pub enum CppComparableNode {
Named {
name: StructuredTypeName,
primitive: bool,
konst: bool,
volatil: bool,
},
Pointer {
inner: usize,
konst: bool,
volatil: bool,
},
Reference {
inner: usize,
},
Array {
inner: usize,
},
Generic {
base: usize,
arguments: Vec<usize>,
},
}Expand description
One node of a CppComparableParameter arena.
Reference and Array carry no qualifiers because the grammar writes none
on them: a reference cannot be cv-qualified in C++, and an array’s
qualifiers belong to its element type. A cv-qualifier written on a generic
type (const std::vector<int>) is recorded on the generic’s base leaf,
which is the only Named node the whole spelling produces.
Variants§
Trait Implementations§
Source§impl Clone for CppComparableNode
impl Clone for CppComparableNode
Source§fn clone(&self) -> CppComparableNode
fn clone(&self) -> CppComparableNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CppComparableNode
impl Debug for CppComparableNode
impl Eq for CppComparableNode
Source§impl PartialEq for CppComparableNode
impl PartialEq for CppComparableNode
impl StructuralPartialEq for CppComparableNode
Auto Trait Implementations§
impl Freeze for CppComparableNode
impl RefUnwindSafe for CppComparableNode
impl Send for CppComparableNode
impl Sync for CppComparableNode
impl Unpin for CppComparableNode
impl UnsafeUnpin for CppComparableNode
impl UnwindSafe for CppComparableNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more