pub enum ErrorSource {
Command,
Runtime,
Subscription,
View,
}Expand description
Where the error originated within the framework
Variants§
Command
Command execution (Cmd::Task failed, panic, etc.)
Runtime
Runtime internals (tokio, channel, etc.)
Subscription
Subscription handling
View
View rendering
Trait Implementations§
Source§impl Clone for ErrorSource
impl Clone for ErrorSource
Source§fn clone(&self) -> ErrorSource
fn clone(&self) -> ErrorSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ErrorSource
impl Debug for ErrorSource
Source§impl Display for ErrorSource
impl Display for ErrorSource
Source§impl Hash for ErrorSource
impl Hash for ErrorSource
Source§impl PartialEq for ErrorSource
impl PartialEq for ErrorSource
impl Copy for ErrorSource
impl Eq for ErrorSource
impl StructuralPartialEq for ErrorSource
Auto Trait Implementations§
impl Freeze for ErrorSource
impl RefUnwindSafe for ErrorSource
impl Send for ErrorSource
impl Sync for ErrorSource
impl Unpin for ErrorSource
impl UnsafeUnpin for ErrorSource
impl UnwindSafe for ErrorSource
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