Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. pub struct Foo<T> {
  2. pub data: Option<T>,
  3. }
  4.  
  5. impl<T> Foo<T> {
  6. pub fn new() -> Self {
  7. Foo { data: None }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement