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