pub enum TryTableCatchKind<'a> {
Catch(Index<'a>),
CatchRef(Index<'a>),
CatchAll,
CatchAllRef,
}Variants§
Implementations§
Source§impl<'a> TryTableCatchKind<'a>
impl<'a> TryTableCatchKind<'a>
pub fn tag_index_mut(&mut self) -> Option<&mut Index<'a>>
Trait Implementations§
Source§impl<'a> Clone for TryTableCatchKind<'a>
impl<'a> Clone for TryTableCatchKind<'a>
Source§fn clone(&self) -> TryTableCatchKind<'a>
fn clone(&self) -> TryTableCatchKind<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for TryTableCatchKind<'a>
impl<'a> RefUnwindSafe for TryTableCatchKind<'a>
impl<'a> Send for TryTableCatchKind<'a>
impl<'a> Sync for TryTableCatchKind<'a>
impl<'a> Unpin for TryTableCatchKind<'a>
impl<'a> UnwindSafe for TryTableCatchKind<'a>
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