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