pub struct CppComparableParameter { /* private fields */ }Expand description
A parameter type as a flat arena of nodes plus a root index.
The arena carries the same rationale as StructuredTypeIdentity: source
can nest types very deeply, and cloning, comparing or dropping the value
must not consume the Rust call stack. Nodes are appended in post-order, so
every child index is smaller than its parent’s and the last appended node is
the root.
That post-order append is also what makes the derived PartialEq a correct
structural equality: the builder below is deterministic, so one type shape
has exactly one arena layout no matter which spelling produced it. Two
shapes are equal as values iff they are equal as type trees.
Implementations§
Trait Implementations§
Source§impl Clone for CppComparableParameter
impl Clone for CppComparableParameter
Source§fn clone(&self) -> CppComparableParameter
fn clone(&self) -> CppComparableParameter
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 CppComparableParameter
impl Debug for CppComparableParameter
impl Eq for CppComparableParameter
Source§impl PartialEq for CppComparableParameter
impl PartialEq for CppComparableParameter
impl StructuralPartialEq for CppComparableParameter
Auto Trait Implementations§
impl Freeze for CppComparableParameter
impl RefUnwindSafe for CppComparableParameter
impl Send for CppComparableParameter
impl Sync for CppComparableParameter
impl Unpin for CppComparableParameter
impl UnsafeUnpin for CppComparableParameter
impl UnwindSafe for CppComparableParameter
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