pub struct EntityDespawnError(pub EntityMutableFetchError);Expand description
An error that occurs when a specified Entity could not be despawned.
Tuple Fields§
§0: EntityMutableFetchErrorTrait Implementations§
Source§impl Clone for EntityDespawnError
impl Clone for EntityDespawnError
Source§fn clone(&self) -> EntityDespawnError
fn clone(&self) -> EntityDespawnError
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 EntityDespawnError
impl Debug for EntityDespawnError
Source§impl Display for EntityDespawnError
impl Display for EntityDespawnError
Source§impl Error for EntityDespawnError
impl Error for EntityDespawnError
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 From<EntityMutableFetchError> for EntityDespawnError
impl From<EntityMutableFetchError> for EntityDespawnError
Source§fn from(source: EntityMutableFetchError) -> Self
fn from(source: EntityMutableFetchError) -> Self
Converts to this type from the input type.
impl Copy for EntityDespawnError
Auto Trait Implementations§
impl Freeze for EntityDespawnError
impl RefUnwindSafe for EntityDespawnError
impl Send for EntityDespawnError
impl Sync for EntityDespawnError
impl Unpin for EntityDespawnError
impl UnwindSafe for EntityDespawnError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.