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