Searched defs:WithAssoc (Results 1 – 11 of 11) sorted by relevance
11 trait WithAssoc<A> { trait15 impl<T> WithAssoc<T> for () { impl19 type Return<A> = impl WithAssoc<A, AssocType = impl SomeTrait + 'a>; implementation
11 trait WithAssoc { interface15 impl WithAssoc for () { implementation19 type Return<'a> = impl WithAssoc<AssocType = impl Sized + 'a>; implementation
8 trait WithAssoc { interface14 type Return<A> = impl WithAssoc<AssocType = impl WithParam<A>>; implementation
9 trait WithAssoc { trait13 impl<'a> WithAssoc for &'a () { impl
13 trait WithAssoc { trait
12 trait WithAssoc { trait
20 pub struct WithAssoc<T> where T : TheTrait { struct26 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
26 pub struct WithAssoc<T:TheSubTrait> { struct32 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
20 pub struct WithAssoc<T:TheTrait> { struct30 // associated types of traits that appear in `WithAssoc` must in with_assoc() argument
26 trait WithAssoc<U> { trait
270 trait WithAssoc { in main() trait289 impl<'a> WithAssoc for &'a u32 { in main() impl