pub enum CatchTarget {
Register(u8),
Variable(String),
}Variants§
Trait Implementations§
Source§impl Clone for CatchTarget
impl Clone for CatchTarget
Source§fn clone(&self) -> CatchTarget
fn clone(&self) -> CatchTarget
Returns a duplicate 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 CatchTarget
impl Debug for CatchTarget
Source§impl<'de> Deserialize<'de> for CatchTarget
impl<'de> Deserialize<'de> for CatchTarget
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 Hash for CatchTarget
impl Hash for CatchTarget
Source§impl Ord for CatchTarget
impl Ord for CatchTarget
Source§fn cmp(&self, other: &CatchTarget) -> Ordering
fn cmp(&self, other: &CatchTarget) -> 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 CatchTarget
impl PartialEq for CatchTarget
Source§impl PartialOrd for CatchTarget
impl PartialOrd for CatchTarget
Source§impl Serialize for CatchTarget
impl Serialize for CatchTarget
impl Eq for CatchTarget
impl StructuralPartialEq for CatchTarget
Auto Trait Implementations§
impl Freeze for CatchTarget
impl RefUnwindSafe for CatchTarget
impl Send for CatchTarget
impl Sync for CatchTarget
impl Unpin for CatchTarget
impl UnwindSafe for CatchTarget
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