Home
last modified time | relevance | path

Searched defs:Struct1 (Results 1 – 2 of 2) sorted by relevance

/external/rust/android-crates-io/crates/pin-project/tests/
Dpin_project.rs188 struct Struct1<I> in where_clause_and_associated_type_field() struct
193 f1: I, in where_clause_and_associated_type_field()
194 f2: I::Item, in where_clause_and_associated_type_field()
274 pub struct Struct1<'a, T: ?Sized> { in trait_bounds_on_type_generics() struct
275 f: &'a mut T, in trait_bounds_on_type_generics()
332 pub struct Struct1<'pin, T> { in overlapping_lifetime_names() struct
334 f: &'pin mut T, in overlapping_lifetime_names()
438 struct Struct1<T, U> { in lifetime_project() struct
440 pinned: T, in lifetime_project()
441 unpinned: U, in lifetime_project()
[all …]
/external/rust/android-crates-io/crates/pin-project-lite/tests/
Dtest.rs357 impl<T, U> Struct1<T, U> { in lifetime_project() impl
528 struct Struct1<A>(A); in no_infer_outlives() struct
530 impl<X, T> Trait<X> for Struct1<T> { in no_infer_outlives() implementation