#[non_exhaustive]pub struct Ignore;Expand description
Disable error capture.
The error produced will be an ErrorMarker which is a zero-sized
placeholder type.
To capture an error, use with_capture::<E>. To produce an error see
with_error::<E>.
This is the default behavior you get when calling new or new_in.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ignore
impl RefUnwindSafe for Ignore
impl Send for Ignore
impl Sync for Ignore
impl Unpin for Ignore
impl UnwindSafe for Ignore
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