Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. impl TSeries {
  2. fn series(&mut self) -> Option<Series<String> {
  3. match self {
  4. TSeries::Text(v) => Some(v),
  5. _ => {None}
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement