pub enum ComponentInitError {
UninitializedDependencies(String),
InitFailed(&'static str),
Unknown,
}Expand description
Errors that a component initializer may return.
Variants§
Trait Implementations§
Source§impl Clone for ComponentInitError
impl Clone for ComponentInitError
Source§fn clone(&self) -> ComponentInitError
fn clone(&self) -> ComponentInitError
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 ComponentInitError
impl Debug for ComponentInitError
Source§impl Display for ComponentInitError
impl Display for ComponentInitError
Source§impl PartialEq for ComponentInitError
impl PartialEq for ComponentInitError
impl Eq for ComponentInitError
impl StructuralPartialEq for ComponentInitError
Auto Trait Implementations§
impl Freeze for ComponentInitError
impl RefUnwindSafe for ComponentInitError
impl Send for ComponentInitError
impl Sync for ComponentInitError
impl Unpin for ComponentInitError
impl UnsafeUnpin for ComponentInitError
impl UnwindSafe for ComponentInitError
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