Struct oxygengine_core::ecs::commands::MissingComponent
source · [−]pub struct MissingComponent(_);
Expand description
Error indicating that an entity did not have a required component
Implementations
sourceimpl MissingComponent
impl MissingComponent
sourcepub fn new<T>() -> MissingComponentwhere
T: Component,
pub fn new<T>() -> MissingComponentwhere
T: Component,
Construct an error representing a missing T
Trait Implementations
sourceimpl Clone for MissingComponent
impl Clone for MissingComponent
sourcefn clone(&self) -> MissingComponent
fn clone(&self) -> MissingComponent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MissingComponent
impl Debug for MissingComponent
sourceimpl Display for MissingComponent
impl Display for MissingComponent
sourceimpl Error for MissingComponent
impl Error for MissingComponent
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<MissingComponent> for ComponentError
impl From<MissingComponent> for ComponentError
sourcefn from(x: MissingComponent) -> ComponentError
fn from(x: MissingComponent) -> ComponentError
Converts to this type from the input type.
sourceimpl Hash for MissingComponent
impl Hash for MissingComponent
sourceimpl PartialEq<MissingComponent> for MissingComponent
impl PartialEq<MissingComponent> for MissingComponent
sourcefn eq(&self, other: &MissingComponent) -> bool
fn eq(&self, other: &MissingComponent) -> bool
impl Eq for MissingComponent
impl StructuralEq for MissingComponent
impl StructuralPartialEq for MissingComponent
Auto Trait Implementations
impl RefUnwindSafe for MissingComponent
impl Send for MissingComponent
impl Sync for MissingComponent
impl Unpin for MissingComponent
impl UnwindSafe for MissingComponent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.