Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. struct ImportantExcerpt<'a, 'b> {
  2. part_a: &'a str,
  3. part_b: &'b str,
  4. }
  5.  
  6. impl<'c, 'd> ImportantExcerpt<'c, 'd> {
  7. // Some stuff
  8. }
  9.  
  10. impl<'f> ImportantExcerpt<'f, 'f> {
  11. // Some different stuff
  12. }
  13.  
  14. impl<'g, 'h: 'g> ImportantExcerpt<'g, 'h> {
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement