Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #[derive(Default, Debug)]
  2. struct S {
  3. a: Vec<u8>,
  4. b: Vec<u8>,
  5. c: Vec<u8>,
  6. }
  7.  
  8. fn main() {
  9. println!("{:?}", S::default());
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement