pub struct HandlerError { /* private fields */ }Expand description
An error that can be returned from a WindowHandler.
This type does not implement the Error trait: instead it can be created from any kind of
Error type, using its From implementation and/or the ? operator.
Implementations§
Source§impl HandlerError
impl HandlerError
Trait Implementations§
Source§impl Debug for HandlerError
impl Debug for HandlerError
Source§impl Display for HandlerError
impl Display for HandlerError
Source§impl<E: Error + 'static> From<E> for HandlerError
impl<E: Error + 'static> From<E> for HandlerError
Source§impl From<HandlerError> for Error
impl From<HandlerError> for Error
Source§fn from(e: HandlerError) -> Self
fn from(e: HandlerError) -> Self
Converts to this type from the input type.
Source§impl From<HandlerError> for Box<dyn Error + 'static>
impl From<HandlerError> for Box<dyn Error + 'static>
Source§fn from(value: HandlerError) -> Self
fn from(value: HandlerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for HandlerError
impl !Send for HandlerError
impl !Sync for HandlerError
impl !UnwindSafe for HandlerError
impl Freeze for HandlerError
impl Unpin for HandlerError
impl UnsafeUnpin for HandlerError
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