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