[][src]Enum asi_core0::Error

pub enum Error {
    Sensor {
        sensor: SensorId,
        error: Box<dyn Error>,
    },
    Actuator {
        actuator: ActuatorId,
        error: Box<dyn Error>,
    },
    OutOfMemory {
        offset: usize,
        slots: usize,
    },
    InvalidMemoryAccess {
        memory: MemoryId,
        action: Action,
    },
    InvalidSensorAccess {
        sensor: SensorId,
        action: Action,
    },
    InvalidActuatorAccess {
        actuator: ActuatorId,
        action: Action,
    },
    MemoryAlreadyFree(MemoryId),
    WaitingPeriodInterrupted {
        time_remaining: f64,
    },
}

An error happened.

Variants

Sensor

Something is wrong with the sensor.

Fields of Sensor

sensor: SensorId

The sensor that sent the error.

error: Box<dyn Error>

The error sent from sensor.

Actuator

Something is wrong with the actuator.

Fields of Actuator

actuator: ActuatorId

The actuator that sent the error.

error: Box<dyn Error>

The error sent from the actuator.

OutOfMemory

Not enough memory. Includes the number of slots allocated.

Fields of OutOfMemory

offset: usize

The offset of allocated slots.

slots: usize

The number of slots allocated.

InvalidMemoryAccess

Invalid memory access.

Fields of InvalidMemoryAccess

memory: MemoryId

The memory slot.

action: Action

The action causing invalid memory access.

InvalidSensorAccess

Invalid sensor access.

Fields of InvalidSensorAccess

sensor: SensorId

The sensor.

action: Action

The action causing invalid sensor access.

InvalidActuatorAccess

Invalid actuator access.

Fields of InvalidActuatorAccess

actuator: ActuatorId

The actuator.

action: Action

The action causing invalid actuator access.

MemoryAlreadyFree(MemoryId)

Attempting to free memory that is already free.

WaitingPeriodInterrupted

Something interrupted the waiting period. This is usually a built-in hardware feature to wake up the agent.

Fields of WaitingPeriodInterrupted

time_remaining: f64

The remaining time in seconds.

Trait Implementations

impl Debug for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl !Send for Error

impl !Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

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> 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.