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