pub struct UnwindContextWithIo<W: Write, T: Debug + DebugAnsiColored, P: PanicDetector> { /* private fields */ }
Available on crate feature std only.
Expand description

A structure representing a scoped guard with unwind context with core::fmt::Write writer.

If dropped during unwind it will write a message to a given writer containing given function or scope context.

When this structure is dropped (falls out of scope) and the current thread is not unwinding, the unwind context will be forgotten.

§Examples

use unwind_context::{unwind_context, UnwindContextWithIo};

fn func(foo: u32, bar: &str, secret: &str) {
    let _ctx: UnwindContextWithIo<_, _, _> = unwind_context!(fn(foo, bar, ...));
    // ...
}

Implementations§

source§

impl<W: Write, T: Debug + DebugAnsiColored, P: PanicDetector> UnwindContextWithIo<W, T, P>

source

pub fn new( data: T, writer: W, panic_detector: P, color_scheme: Option<&'static AnsiColorScheme> ) -> Self

Create a new UnwindContextWithFmt with the provided core::fmt::Write writer, context scope data, and color scheme.

This function is not intended to be used directly. Consider using macros like unwind_context or unwind_context_with_io instead.

source

pub fn print(&mut self)

Print context to a writer specified in the UnwindContextWithIo constructor.

This method is called when a panic detected.

Trait Implementations§

source§

impl<W: Clone + Write, T: Clone + Debug + DebugAnsiColored, P: Clone + PanicDetector> Clone for UnwindContextWithIo<W, T, P>

source§

fn clone(&self) -> UnwindContextWithIo<W, T, P>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<W: Debug + Write, T: Debug + Debug + DebugAnsiColored, P: Debug + PanicDetector> Debug for UnwindContextWithIo<W, T, P>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<W: Write, T: Debug + DebugAnsiColored, P: PanicDetector> Drop for UnwindContextWithIo<W, T, P>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<W: Hash + Write, T: Hash + Debug + DebugAnsiColored, P: Hash + PanicDetector> Hash for UnwindContextWithIo<W, T, P>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<W: Ord + Write, T: Ord + Debug + DebugAnsiColored, P: Ord + PanicDetector> Ord for UnwindContextWithIo<W, T, P>

source§

fn cmp(&self, other: &UnwindContextWithIo<W, T, P>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<W: PartialEq + Write, T: PartialEq + Debug + DebugAnsiColored, P: PartialEq + PanicDetector> PartialEq for UnwindContextWithIo<W, T, P>

source§

fn eq(&self, other: &UnwindContextWithIo<W, T, P>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<W: PartialOrd + Write, T: PartialOrd + Debug + DebugAnsiColored, P: PartialOrd + PanicDetector> PartialOrd for UnwindContextWithIo<W, T, P>

source§

fn partial_cmp(&self, other: &UnwindContextWithIo<W, T, P>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<W: Eq + Write, T: Eq + Debug + DebugAnsiColored, P: Eq + PanicDetector> Eq for UnwindContextWithIo<W, T, P>

source§

impl<W: Write, T: Debug + DebugAnsiColored, P: PanicDetector> StructuralPartialEq for UnwindContextWithIo<W, T, P>

Auto Trait Implementations§

§

impl<W, T, P> RefUnwindSafe for UnwindContextWithIo<W, T, P>

§

impl<W, T, P> Send for UnwindContextWithIo<W, T, P>
where P: Send, T: Send, W: Send,

§

impl<W, T, P> Sync for UnwindContextWithIo<W, T, P>
where P: Sync, T: Sync, W: Sync,

§

impl<W, T, P> Unpin for UnwindContextWithIo<W, T, P>
where P: Unpin, T: Unpin, W: Unpin,

§

impl<W, T, P> UnwindSafe for UnwindContextWithIo<W, T, P>
where P: UnwindSafe, T: UnwindSafe, W: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.