Home
last modified time | relevance | path

Searched defs:SliceRef (Results 1 – 4 of 4) sorted by relevance

/external/rust/cxx/syntax/
Dimpls.rs229 impl Eq for SliceRef {} implementation
231 impl PartialEq for SliceRef { implementation
233 let SliceRef { in eq() localVariable
241 let SliceRef { in eq() localVariable
253 impl Hash for SliceRef { implementation
255 let SliceRef { in hash() localVariable
Dmod.rs221 SliceRef(Box<SliceRef>), enumerator
250 pub struct SliceRef { struct
251 pub ampersand: Token![&],
252 pub lifetime: Option<Lifetime>,
253 pub mutable: bool,
254 pub bracket: Bracket,
255 pub inner: Type,
256 pub mutability: Option<Token![mut]>,
Dtokens.rs121 impl ToTokens for SliceRef { implementation
123 let SliceRef { in to_tokens() localVariable
Dcheck.rs266 fn check_type_slice_ref(cx: &mut Check, ty: &SliceRef) { in check_type_slice_ref()