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