pub enum FunctionDefinitionNodeType {
FunctionDefinition,
}Expand description
FunctionDefinitionNodeType
JSON schema
{
"enum": [
"FunctionDefinition"
]
}Variants§
FunctionDefinition
Trait Implementations§
Source§impl Clone for FunctionDefinitionNodeType
impl Clone for FunctionDefinitionNodeType
Source§fn clone(&self) -> FunctionDefinitionNodeType
fn clone(&self) -> FunctionDefinitionNodeType
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 moreimpl Copy for FunctionDefinitionNodeType
Source§impl Debug for FunctionDefinitionNodeType
impl Debug for FunctionDefinitionNodeType
Source§impl<'de> Deserialize<'de> for FunctionDefinitionNodeType
impl<'de> Deserialize<'de> for FunctionDefinitionNodeType
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
impl Eq for FunctionDefinitionNodeType
Source§impl From<&FunctionDefinitionNodeType> for FunctionDefinitionNodeType
impl From<&FunctionDefinitionNodeType> for FunctionDefinitionNodeType
Source§fn from(value: &FunctionDefinitionNodeType) -> Self
fn from(value: &FunctionDefinitionNodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for FunctionDefinitionNodeType
impl FromStr for FunctionDefinitionNodeType
Source§impl Hash for FunctionDefinitionNodeType
impl Hash for FunctionDefinitionNodeType
Source§impl Ord for FunctionDefinitionNodeType
impl Ord for FunctionDefinitionNodeType
Source§fn cmp(&self, other: &FunctionDefinitionNodeType) -> Ordering
fn cmp(&self, other: &FunctionDefinitionNodeType) -> Ordering
1.21.0 (const: unstable) · 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 FunctionDefinitionNodeType
impl PartialEq for FunctionDefinitionNodeType
Source§fn eq(&self, other: &FunctionDefinitionNodeType) -> bool
fn eq(&self, other: &FunctionDefinitionNodeType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FunctionDefinitionNodeType
impl PartialOrd for FunctionDefinitionNodeType
impl StructuralPartialEq for FunctionDefinitionNodeType
Source§impl TryFrom<&String> for FunctionDefinitionNodeType
impl TryFrom<&String> for FunctionDefinitionNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for FunctionDefinitionNodeType
impl TryFrom<&str> for FunctionDefinitionNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for FunctionDefinitionNodeType
impl TryFrom<String> for FunctionDefinitionNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FunctionDefinitionNodeType
impl RefUnwindSafe for FunctionDefinitionNodeType
impl Send for FunctionDefinitionNodeType
impl Sync for FunctionDefinitionNodeType
impl Unpin for FunctionDefinitionNodeType
impl UnsafeUnpin for FunctionDefinitionNodeType
impl UnwindSafe for FunctionDefinitionNodeType
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