Guest User

Untitled

a guest
May 16th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. struct User {
  2. email: &'static str,
  3. password: &'static str,
  4. }
  5.  
  6. fn main() {
  7. let _user = User {
  8. email: "a@a",
  9. password: "foobar",
  10. };
  11. }
Add Comment
Please, Sign In to add comment