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