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