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