pub enum InheritanceSpecifierNodeType {
InheritanceSpecifier,
}
Expand description
InheritanceSpecifierNodeType
JSON schema
{
"enum": [
"InheritanceSpecifier"
]
}
Variants§
InheritanceSpecifier
Trait Implementations§
Source§impl Clone for InheritanceSpecifierNodeType
impl Clone for InheritanceSpecifierNodeType
Source§fn clone(&self) -> InheritanceSpecifierNodeType
fn clone(&self) -> InheritanceSpecifierNodeType
Returns a copy 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 InheritanceSpecifierNodeType
impl Debug for InheritanceSpecifierNodeType
Source§impl<'de> Deserialize<'de> for InheritanceSpecifierNodeType
impl<'de> Deserialize<'de> for InheritanceSpecifierNodeType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&InheritanceSpecifierNodeType> for InheritanceSpecifierNodeType
impl From<&InheritanceSpecifierNodeType> for InheritanceSpecifierNodeType
Source§fn from(value: &InheritanceSpecifierNodeType) -> Self
fn from(value: &InheritanceSpecifierNodeType) -> Self
Converts to this type from the input type.
Source§impl Hash for InheritanceSpecifierNodeType
impl Hash for InheritanceSpecifierNodeType
Source§impl Ord for InheritanceSpecifierNodeType
impl Ord for InheritanceSpecifierNodeType
Source§fn cmp(&self, other: &InheritanceSpecifierNodeType) -> Ordering
fn cmp(&self, other: &InheritanceSpecifierNodeType) -> 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 InheritanceSpecifierNodeType
impl PartialEq for InheritanceSpecifierNodeType
Source§fn eq(&self, other: &InheritanceSpecifierNodeType) -> bool
fn eq(&self, other: &InheritanceSpecifierNodeType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for InheritanceSpecifierNodeType
impl PartialOrd for InheritanceSpecifierNodeType
Source§impl TryFrom<&String> for InheritanceSpecifierNodeType
impl TryFrom<&String> for InheritanceSpecifierNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for InheritanceSpecifierNodeType
impl TryFrom<&str> for InheritanceSpecifierNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for InheritanceSpecifierNodeType
impl TryFrom<String> for InheritanceSpecifierNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for InheritanceSpecifierNodeType
impl Eq for InheritanceSpecifierNodeType
impl StructuralPartialEq for InheritanceSpecifierNodeType
Auto Trait Implementations§
impl Freeze for InheritanceSpecifierNodeType
impl RefUnwindSafe for InheritanceSpecifierNodeType
impl Send for InheritanceSpecifierNodeType
impl Sync for InheritanceSpecifierNodeType
impl Unpin for InheritanceSpecifierNodeType
impl UnwindSafe for InheritanceSpecifierNodeType
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