pub enum DeleteComponentError {
ComponentNotFound {
component_type_info: TypeInfo,
},
NotSupportedLifeCycle {
component_type_info: TypeInfo,
life_cycle: LifeCycle,
},
}Variants§
Trait Implementations§
Source§impl Debug for DeleteComponentError
impl Debug for DeleteComponentError
Source§impl Display for DeleteComponentError
impl Display for DeleteComponentError
Source§impl Error for DeleteComponentError
impl Error for DeleteComponentError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DeleteComponentError
impl PartialEq for DeleteComponentError
impl StructuralPartialEq for DeleteComponentError
Auto Trait Implementations§
impl Freeze for DeleteComponentError
impl RefUnwindSafe for DeleteComponentError
impl Send for DeleteComponentError
impl Sync for DeleteComponentError
impl Unpin for DeleteComponentError
impl UnwindSafe for DeleteComponentError
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