Home
last modified time | relevance | path

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

/third_party/rust/crates/cxx/syntax/
Dimpls.rs231 impl Eq for SliceRef {} implementation
233 impl PartialEq for SliceRef { implementation
235 let SliceRef { in eq() localVariable
243 let SliceRef { in eq() localVariable
255 impl Hash for SliceRef { implementation
257 let SliceRef { in hash() localVariable
Dmod.rs239 SliceRef(Box<SliceRef>), enumerator
268 pub struct SliceRef { struct
269 pub ampersand: Token![&],
270 pub lifetime: Option<Lifetime>,
271 pub mutable: bool,
272 pub bracket: Bracket,
273 pub inner: Type,
274 pub mutability: Option<Token![mut]>,
Dtokens.rs128 impl ToTokens for SliceRef { implementation
130 let SliceRef { in to_tokens() localVariable
Dcheck.rs265 fn check_type_slice_ref(cx: &mut Check, ty: &SliceRef) { in check_type_slice_ref()