Guest User

Untitled

a guest
Oct 9th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. enum Func<'a> {
  2. User {
  3. id: u8,
  4. username: &'a str,
  5. password: &'a str
  6. },
  7. Text {
  8. message: &'a str,
  9. }
  10. }
  11.  
  12. fn main() {
  13. }
Add Comment
Please, Sign In to add comment