Enum world_dispatcher::EcsError[][src]

pub enum EcsError {
    NotInitialized,
    AlreadyBorrowed,
    DispatcherExecutionFailed(Vec<EcsError>),
    SystemError(Box<dyn Error + Send>),
}

The types of errors a System can create.

Variants

NotInitialized

A resource was not initialized in the World but the System tries to access it.

Usually, this means no dispatcher was used and World::initialize was not called.

AlreadyBorrowed

The requested resource is already borrowed. This error is created if the System tries to read a resource that has already been mutably borrowed. It can also happen when trying to mutably borrow a resource that is already being read.

This error should not occur during normal use, as the dispatchers can recover easily.

DispatcherExecutionFailed(Vec<EcsError>)

The execution of the dispatcher failed and returned one or more errors.

SystemError(Box<dyn Error + Send>)

This variant is for user-defined errors. To create an error of this type easily, use the system_error! macro.

Trait Implementations

impl Debug for EcsError[src]

Auto Trait Implementations

impl !RefUnwindSafe for EcsError

impl Send for EcsError

impl !Sync for EcsError

impl Unpin for EcsError

impl !UnwindSafe for EcsError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.