pub enum ModifierInvocationKind {
ModifierInvocation,
BaseConstructorSpecifier,
}
Expand description
ModifierInvocationKind
JSON schema
{
"enum": [
"modifierInvocation",
"baseConstructorSpecifier"
]
}
Variants§
Trait Implementations§
Source§impl Clone for ModifierInvocationKind
impl Clone for ModifierInvocationKind
Source§fn clone(&self) -> ModifierInvocationKind
fn clone(&self) -> ModifierInvocationKind
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 ModifierInvocationKind
impl Debug for ModifierInvocationKind
Source§impl<'de> Deserialize<'de> for ModifierInvocationKind
impl<'de> Deserialize<'de> for ModifierInvocationKind
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<&ModifierInvocationKind> for ModifierInvocationKind
impl From<&ModifierInvocationKind> for ModifierInvocationKind
Source§fn from(value: &ModifierInvocationKind) -> Self
fn from(value: &ModifierInvocationKind) -> Self
Converts to this type from the input type.
Source§impl FromStr for ModifierInvocationKind
impl FromStr for ModifierInvocationKind
Source§impl Hash for ModifierInvocationKind
impl Hash for ModifierInvocationKind
Source§impl Ord for ModifierInvocationKind
impl Ord for ModifierInvocationKind
Source§fn cmp(&self, other: &ModifierInvocationKind) -> Ordering
fn cmp(&self, other: &ModifierInvocationKind) -> 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 ModifierInvocationKind
impl PartialEq for ModifierInvocationKind
Source§impl PartialOrd for ModifierInvocationKind
impl PartialOrd for ModifierInvocationKind
Source§impl Serialize for ModifierInvocationKind
impl Serialize for ModifierInvocationKind
Source§impl ToString for ModifierInvocationKind
impl ToString for ModifierInvocationKind
Source§impl TryFrom<&String> for ModifierInvocationKind
impl TryFrom<&String> for ModifierInvocationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ModifierInvocationKind
impl TryFrom<&str> for ModifierInvocationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ModifierInvocationKind
impl TryFrom<String> for ModifierInvocationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ModifierInvocationKind
impl Eq for ModifierInvocationKind
impl StructuralPartialEq for ModifierInvocationKind
Auto Trait Implementations§
impl Freeze for ModifierInvocationKind
impl RefUnwindSafe for ModifierInvocationKind
impl Send for ModifierInvocationKind
impl Sync for ModifierInvocationKind
impl Unpin for ModifierInvocationKind
impl UnwindSafe for ModifierInvocationKind
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