Guest User

Untitled

a guest
Oct 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. trait Trait {
  2. type AssocType;
  3. }
  4.  
  5. struct Struct;
  6. struct StructWithLifetime<'a>;
  7.  
  8. impl<'a> Trait<'a> for Struct {
  9. type AssocType = StructWithLifetime<'a>;
  10. }
Add Comment
Please, Sign In to add comment