Enum oxygengine_core::ecs::error::Error [−][src]
pub enum Error { Custom(BoxedErr), WrongGeneration(WrongGeneration), // some variants omitted }
The Specs error type. This is an enum which is able to represent all error types of this library.
Please note that you should not use __NonExhaustive
,
which is a variant specifically added for extensibility
without breakage.
Variants
Custom(BoxedErr)
A custom, boxed error.
WrongGeneration(WrongGeneration)
Wrong generation error.
Trait Implementations
impl From<WrongGeneration> for Error
[src]
impl From<WrongGeneration> for Error
[src]pub fn from(e: WrongGeneration) -> Error
[src]
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
impl !UnwindSafe for Error