pub struct WithFallback<P, F> { /* private fields */ }
Expand description
A Processor
composed of a primary and a fallback Processor
.
This type is returned by Processor::or
.
Trait Implementations§
Source§impl<P, F> Processor for WithFallback<P, F>
impl<P, F> Processor for WithFallback<P, F>
Source§fn or<P: Processor>(self, processor: P) -> WithFallback<Self, P>
fn or<P: Processor>(self, processor: P) -> WithFallback<Self, P>
Returns a
Processor
that first attempts processing with self
, and
resorts to processing with fallback
on failure. Read moreSource§fn or_stdout(self) -> WithFallback<Self, Printer<Pretty, MakeStdout>>
fn or_stdout(self) -> WithFallback<Self, Printer<Pretty, MakeStdout>>
Returns a
Processor
that first attempts processing with self
, and
resorts to pretty-printing to stdout on failure.Source§fn or_stderr(self) -> WithFallback<Self, Printer<Pretty, MakeStderr>>
fn or_stderr(self) -> WithFallback<Self, Printer<Pretty, MakeStderr>>
Returns a
Processor
that first attempts processing with self
, and
resorts to pretty-printing to stderr on failure.Source§fn or_none(self) -> WithFallback<Self, Sink>
fn or_none(self) -> WithFallback<Self, Sink>
Returns a
Processor
that first attempts processing with self
, otherwise
silently fails.Auto Trait Implementations§
impl<P, F> Freeze for WithFallback<P, F>
impl<P, F> RefUnwindSafe for WithFallback<P, F>where
P: RefUnwindSafe,
F: RefUnwindSafe,
impl<P, F> Send for WithFallback<P, F>
impl<P, F> Sync for WithFallback<P, F>
impl<P, F> Unpin for WithFallback<P, F>
impl<P, F> UnwindSafe for WithFallback<P, F>where
P: UnwindSafe,
F: UnwindSafe,
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