pub enum TryFromFilteredError {
MissingReadAllAccess,
MissingWriteAllAccess,
}Expand description
Error type returned by TryFrom conversions from filtered entity types
(FilteredEntityRef/FilteredEntityMut) to full-access entity types
(EntityRef/EntityMut).
Variants§
MissingReadAllAccess
Error indicating that the filtered entity does not have read access to all components.
MissingWriteAllAccess
Error indicating that the filtered entity does not have write access to all components.
Trait Implementations§
Source§impl Debug for TryFromFilteredError
impl Debug for TryFromFilteredError
Source§impl Display for TryFromFilteredError
impl Display for TryFromFilteredError
Source§impl Error for TryFromFilteredError
impl Error for TryFromFilteredError
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()
Auto Trait Implementations§
impl Freeze for TryFromFilteredError
impl RefUnwindSafe for TryFromFilteredError
impl Send for TryFromFilteredError
impl Sync for TryFromFilteredError
impl Unpin for TryFromFilteredError
impl UnwindSafe for TryFromFilteredError
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> 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.