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