pub struct TryAnd<H1, H2> { /* private fields */ }
Trait Implementations§
Source§impl<H1, S, E, H2> Handler<S, E> for TryAnd<H1, H2>
impl<H1, S, E, H2> Handler<S, E> for TryAnd<H1, H2>
Source§type Output = <H2 as Handler<S, E>>::Output
type Output = <H2 as Handler<S, E>>::Output
The output of the event handler when it is matched.
Source§fn call(&mut self, state: &mut S, event: &E) -> Handled<Self::Output>
fn call(&mut self, state: &mut S, event: &E) -> Handled<Self::Output>
Reacts to an event with some state. Read more
Source§fn map<U, F>(self, f: F) -> Map<Self, F>
fn map<U, F>(self, f: F) -> Map<Self, F>
Maps the output of the event handler using the given function.
Source§fn and<H2>(self, handler: H2) -> And<Self, H2>
fn and<H2>(self, handler: H2) -> And<Self, H2>
Executes the handler followed by the given handler if and only if the event is matched by
the first.
Source§fn try_and<H2>(self, handler: H2) -> TryAnd<Self, H2>
fn try_and<H2>(self, handler: H2) -> TryAnd<Self, H2>
Executes the handler followed by the given handler if and only if the event is matched by
the first and the output is not an error. Read more
Source§fn and_then<H2, F>(self, f: F) -> AndThen<Self, F>
fn and_then<H2, F>(self, f: F) -> AndThen<Self, F>
Executes the handler followed by the given function if and only if the event is matched by
the first. The function is given the output of the handler and must return a compatible
handler to execute next.
Source§fn try_and_then<H2, F>(self, f: F) -> TryAndThen<Self, F>
fn try_and_then<H2, F>(self, f: F) -> TryAndThen<Self, F>
Executes the handler followed by the given function if and only if the event is matched by
the first and the output is not an error. The function is given the output of the handler
and must return a compatible handler to execute next. Read more
Source§fn or<H2>(self, handler: H2) -> Or<Self, H2>
fn or<H2>(self, handler: H2) -> Or<Self, H2>
Executes the handler followed by the given handler if and only if the event is not
matched by the first.
Source§fn try_or<H2>(self, handler: H2) -> TryOr<Self, H2>
fn try_or<H2>(self, handler: H2) -> TryOr<Self, H2>
Executes the handler followed by the given handler if the event is not matched by the
first or the output is an error. That is, the given handler is executed only if the first
fails: it does not match the event or it matches but returns an error. Read more
Source§fn try_or_unmatched(self) -> TryOrUnmatched<Self>
fn try_or_unmatched(self) -> TryOrUnmatched<Self>
Source§fn context<C, O, D>(self, context: C) -> Context<Self, C, O, D>
fn context<C, O, D>(self, context: C) -> Context<Self, C, O, D>
Provides context for fallible outputs (like
Result
s).Source§fn expect<M>(self, message: M) -> Expect<Self, M>
fn expect<M>(self, message: M) -> Expect<Self, M>
Panics with the given message if a fallible output indicates an error.
Source§fn expect_matches_times<R>(self, expected: R) -> ExpectMatchesTimes<Self, R>
fn expect_matches_times<R>(self, expected: R) -> ExpectMatchesTimes<Self, R>
Panics if the event handler does not match an event a number of times within the specified
range. Read more
Auto Trait Implementations§
impl<H1, H2> Freeze for TryAnd<H1, H2>
impl<H1, H2> RefUnwindSafe for TryAnd<H1, H2>where
H1: RefUnwindSafe,
H2: RefUnwindSafe,
impl<H1, H2> Send for TryAnd<H1, H2>
impl<H1, H2> Sync for TryAnd<H1, H2>
impl<H1, H2> Unpin for TryAnd<H1, H2>
impl<H1, H2> UnwindSafe for TryAnd<H1, H2>where
H1: UnwindSafe,
H2: 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