pub enum HandlerControl {
Skip,
Continue,
Block,
}Variants§
Trait Implementations§
Source§impl FromResidual<Option<Infallible>> for HandlerControl
impl FromResidual<Option<Infallible>> for HandlerControl
Source§fn from_residual(residual: Option<Infallible>) -> Self
fn from_residual(residual: Option<Infallible>) -> Self
🔬This is a nightly-only experimental API. (
try_trait_v2)Constructs the type from a compatible
Residual type. Read moreSource§impl<E> FromResidual<Result<Infallible, E>> for HandlerControl
impl<E> FromResidual<Result<Infallible, E>> for HandlerControl
Source§fn from_residual(residual: Result<Infallible, E>) -> Self
fn from_residual(residual: Result<Infallible, E>) -> Self
🔬This is a nightly-only experimental API. (
try_trait_v2)Constructs the type from a compatible
Residual type. Read moreAuto Trait Implementations§
impl Freeze for HandlerControl
impl RefUnwindSafe for HandlerControl
impl Send for HandlerControl
impl Sync for HandlerControl
impl Unpin for HandlerControl
impl UnwindSafe for HandlerControl
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