pub enum StackContext {
Context(&'static str),
Kind(ErrorKind),
}Expand description
Context added to a stack
Variants§
Trait Implementations§
Source§impl Clone for StackContext
impl Clone for StackContext
Source§fn clone(&self) -> StackContext
fn clone(&self) -> StackContext
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 StackContext
impl Debug for StackContext
Source§impl PartialEq for StackContext
impl PartialEq for StackContext
impl StructuralPartialEq for StackContext
Auto Trait Implementations§
impl Freeze for StackContext
impl RefUnwindSafe for StackContext
impl Send for StackContext
impl Sync for StackContext
impl Unpin for StackContext
impl UnwindSafe for StackContext
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