#[repr(u8)]pub enum NamedObjectRelationType {
InnerPath = 0,
}Variants§
InnerPath = 0
Trait Implementations§
Source§impl Clone for NamedObjectRelationType
impl Clone for NamedObjectRelationType
Source§fn clone(&self) -> NamedObjectRelationType
fn clone(&self) -> NamedObjectRelationType
Returns a duplicate of the value. Read more
1.0.0 · 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 NamedObjectRelationType
impl Debug for NamedObjectRelationType
Source§impl Hash for NamedObjectRelationType
impl Hash for NamedObjectRelationType
Source§impl Into<u8> for NamedObjectRelationType
impl Into<u8> for NamedObjectRelationType
Source§impl Ord for NamedObjectRelationType
impl Ord for NamedObjectRelationType
Source§fn cmp(&self, other: &NamedObjectRelationType) -> Ordering
fn cmp(&self, other: &NamedObjectRelationType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NamedObjectRelationType
impl PartialEq for NamedObjectRelationType
Source§impl PartialOrd for NamedObjectRelationType
impl PartialOrd for NamedObjectRelationType
impl Copy for NamedObjectRelationType
impl Eq for NamedObjectRelationType
impl StructuralPartialEq for NamedObjectRelationType
Auto Trait Implementations§
impl Freeze for NamedObjectRelationType
impl RefUnwindSafe for NamedObjectRelationType
impl Send for NamedObjectRelationType
impl Sync for NamedObjectRelationType
impl Unpin for NamedObjectRelationType
impl UnwindSafe for NamedObjectRelationType
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
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
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§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