pub enum ApplicationError {
Prefab(PrefabError),
ComponentMappingNotFound(String),
}
Expand description
Errors that can occur while interacting with an application
Variants
Prefab(PrefabError)
ComponentMappingNotFound(String)
Trait Implementations
sourceimpl Clone for ApplicationError
impl Clone for ApplicationError
sourcefn clone(&self) -> ApplicationError
fn clone(&self) -> ApplicationError
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 ApplicationError
impl Debug for ApplicationError
sourceimpl From<PrefabError> for ApplicationError
impl From<PrefabError> for ApplicationError
sourcefn from(error: PrefabError) -> ApplicationError
fn from(error: PrefabError) -> ApplicationError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ApplicationError
impl Send for ApplicationError
impl Sync for ApplicationError
impl Unpin for ApplicationError
impl UnwindSafe for ApplicationError
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