pub enum IdMapError {
PoisonErrorLock,
IdNotFound,
WrongType,
}
Expand description
Represents all possible outcomes when using the get_widget_by_id
function
Variants§
Trait Implementations§
Source§impl Debug for IdMapError
impl Debug for IdMapError
Source§impl<T> From<PoisonError<T>> for IdMapError
impl<T> From<PoisonError<T>> for IdMapError
Source§fn from(_: PoisonError<T>) -> Self
fn from(_: PoisonError<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IdMapError
impl RefUnwindSafe for IdMapError
impl Send for IdMapError
impl Sync for IdMapError
impl Unpin for IdMapError
impl UnwindSafe for IdMapError
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