Home
last modified time | relevance | path

Searched defs:AssocType (Results 1 – 25 of 44) sorted by relevance

12

/dports/lang/rust/rustc-1.58.1-src/src/test/ui/type-alias-impl-trait/
H A Dissue-62000-associate-impl-trait-lifetimes.rs8 type AssocType: Send; typedef
9 fn ret(&self) -> Self::AssocType; in ret()
13 type AssocType = impl Send; implementation
20 type AssocType = impl Send; implementation
27 type AssocType: Send + 'a; typedef
28 fn ret(&self) -> Self::AssocType; in ret()
32 type AssocType = impl Send + 'a; implementation
H A Dissue-67844-nested-opaque.rs9 type AssocType; typedef
22 type AssocType = MyParam; typedef
29 fn my_other_fn<A>() -> impl WithAssoc<AssocType = impl WithParam<A>> { in my_other_fn()
H A Dissue-69136-inner-lifetime-resolve-error.rs10 type AssocType; typedef
14 type AssocType = (); typedef
H A Dissue-69136-inner-lifetime-resolve-ok.rs12 type AssocType; typedef
16 type AssocType = (); typedef
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/self/elision/
H A Dassoc-async.rs9 type AssocType; typedef
15 type AssocType = Self; typedef
19 async fn assoc(self: <Struct as Trait>::AssocType, f: &u32) -> &u32 { in assoc()
23 async fn box_AssocType(self: Box<<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in box_AssocType()
27 async fn rc_AssocType(self: Rc<<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in rc_AssocType()
31 async fn box_box_AssocType(self: Box<Box<<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_box_AssocType()
35 async fn box_rc_AssocType(self: Box<Rc<<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_rc_AssocType()
H A Dassoc.rs8 type AssocType; typedef
14 type AssocType = Self; typedef
18 fn assoc(self: <Struct as Trait>::AssocType, f: &u32) -> &u32 { in assoc()
22 fn box_AssocType(self: Box<<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in box_AssocType()
26 fn rc_AssocType(self: Rc<<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in rc_AssocType()
30 fn box_box_AssocType(self: Box<Box<<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_box_AssocType()
34 fn box_rc_AssocType(self: Box<Rc<<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_rc_AssocType()
H A Dref-assoc-async.rs9 type AssocType; typedef
15 type AssocType = Self; typedef
19 async fn ref_AssocType(self: &<Struct as Trait>::AssocType, f: &u32) -> &u32 { in ref_AssocType()
23 async fn box_ref_AssocType(self: Box<&<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in box_ref_AssocType()
27 async fn pin_ref_AssocType(self: Pin<&<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in pin_ref_AssocType()
31 async fn box_box_ref_AssocType(self: Box<Box<&<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_box_ref_AssocType()
35 async fn box_pin_ref_AssocType(self: Box<Pin<&<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_pin_ref_AssocType()
H A Dref-assoc.rs8 type AssocType; typedef
14 type AssocType = Self; typedef
18 fn ref_AssocType(self: &<Struct as Trait>::AssocType, f: &u32) -> &u32 { in ref_AssocType()
22 fn box_ref_AssocType(self: Box<&<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in box_ref_AssocType()
26 fn pin_ref_AssocType(self: Pin<&<Struct as Trait>::AssocType>, f: &u32) -> &u32 { in pin_ref_AssocType()
30 fn box_box_ref_AssocType(self: Box<Box<&<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_box_ref_AssocType()
34 fn box_pin_ref_AssocType(self: Box<Pin<&<Struct as Trait>::AssocType>>, f: &u32) -> &u32 { in box_pin_ref_AssocType()
H A Dlt-assoc-async.rs9 type AssocType; typedef
15 type AssocType = Self; typedef
23 async fn take_AssocType(self: <Struct<'a> as Trait>::AssocType, f: &u32) -> &u32 { in take_AssocType()
27 async fn take_Box_AssocType(self: Box<<Struct<'a> as Trait>::AssocType>, f: &u32) -> &u32 { in take_Box_AssocType()
32 self: Box<Box<<Struct<'a> as Trait>::AssocType>>, in take_Box_Box_AssocType()
38 async fn take_Rc_AssocType(self: Rc<<Struct<'a> as Trait>::AssocType>, f: &u32) -> &u32 { in take_Rc_AssocType()
43 self: Box<Rc<<Struct<'a> as Trait>::AssocType>>, in take_Box_Rc_AssocType()
H A Dlt-assoc.rs8 type AssocType; typedef
14 type AssocType = Self; typedef
22 fn take_AssocType(self: <Struct<'a> as Trait>::AssocType, f: &u32) -> &u32 { in take_AssocType()
26 fn take_Box_AssocType(self: Box<<Struct<'a> as Trait>::AssocType>, f: &u32) -> &u32 { in take_Box_AssocType()
30 fn take_Box_Box_AssocType(self: Box<Box<<Struct<'a> as Trait>::AssocType>>, f: &u32) -> &u32 { in take_Box_Box_AssocType()
34 fn take_Rc_AssocType(self: Rc<<Struct<'a> as Trait>::AssocType>, f: &u32) -> &u32 { in take_Rc_AssocType()
38 fn take_Box_Rc_AssocType(self: Box<Rc<<Struct<'a> as Trait>::AssocType>>, f: &u32) -> &u32 { in take_Box_Rc_AssocType()
/dports/lang/rust/rustc-1.58.1-src/src/test/debuginfo/
H A Dfunction-names.rs173 type AssocType; typedef
177 type AssocType = usize; typedef
181 type AssocType = T::AssocType; typedef
H A Dtype-names.rs313 type AssocType; typedef
320 type AssocType = isize; typedef
/dports/www/dhttpd/dhttpd-1.02-4/src/
H A Dhttpsock.cc48 struct AssocType struct
53 AssocType assocNames[] = argument
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/typeck/
H A Dtypeck-default-trait-impl-assoc-type.rs7 type AssocType; typedef
/dports/cad/opencascade/opencascade-7.6.0/src/IGESBasic/
H A DIGESBasic_AssocGroupType.cxx44 Standard_Integer IGESBasic_AssocGroupType::AssocType () const in AssocType() function in IGESBasic_AssocGroupType
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/nll/ty-outlives/
H A Dprojection-one-region-closure.rs23 type AssocType; typedef
H A Dprojection-one-region-trait-bound-static-closure.rs14 type AssocType: 'static; typedef
H A Dprojection-one-region-trait-bound-closure.rs15 type AssocType: 'a; typedef
H A Dprojection-two-region-trait-bound-closure.rs16 type AssocType: 'a + 'b; typedef
/dports/lang/rust/rustc-1.58.1-src/src/librustdoc/formats/
H A Ditem_type.rs41 AssocType = 16, enumerator
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/declare_interior_mutable_const/
H A Denums.rs115 type AssocType; typedef
/dports/lang/rust/rustc-1.58.1-src/src/rustdoc-json-types/
H A Dlib.rs183 AssocType, enumerator
232 AssocType { enumerator
/dports/x11-wm/icewm/icewm-2.9.4/src/
H A Dyarray.h474 typedef YAssoc<DataType> AssocType; typedef
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_metadata/src/rmeta/
H A Dmod.rs357 AssocType(AssocContainer), enumerator
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_resolve/src/late/
H A Ddiagnostics.rs39 AssocType, enumerator

12