Enum oxygengine_core::ecs::pipeline::QueryOneError
source · [−]pub enum QueryOneError {
NoSuchEntity,
Unsatisfied,
}
Expand description
Errors that arise when querying a single entity
Variants
NoSuchEntity
The entity was already despawned
Unsatisfied
The entity exists but does not satisfy the query
Trait Implementations
sourceimpl Clone for QueryOneError
impl Clone for QueryOneError
sourcefn clone(&self) -> QueryOneError
fn clone(&self) -> QueryOneError
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 QueryOneError
impl Debug for QueryOneError
sourceimpl Display for QueryOneError
impl Display for QueryOneError
sourceimpl Error for QueryOneError
impl Error for QueryOneError
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<NoSuchEntity> for QueryOneError
impl From<NoSuchEntity> for QueryOneError
sourcefn from(NoSuchEntity) -> QueryOneError
fn from(NoSuchEntity) -> QueryOneError
Converts to this type from the input type.
sourceimpl Hash for QueryOneError
impl Hash for QueryOneError
sourceimpl PartialEq<QueryOneError> for QueryOneError
impl PartialEq<QueryOneError> for QueryOneError
sourcefn eq(&self, other: &QueryOneError) -> bool
fn eq(&self, other: &QueryOneError) -> bool
impl Eq for QueryOneError
impl StructuralEq for QueryOneError
impl StructuralPartialEq for QueryOneError
Auto Trait Implementations
impl RefUnwindSafe for QueryOneError
impl Send for QueryOneError
impl Sync for QueryOneError
impl Unpin for QueryOneError
impl UnwindSafe for QueryOneError
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.