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