[][src]Enum r3::kernel::AdjustTimeError

#[repr(i8)]pub enum AdjustTimeError {
    BadContext,
    BadObjectState,
}

Error type for Kernel::adjust_time.

See ResultCode for all result codes and generic descriptions.

Variants

BadContext

CPU Lock is active.

BadObjectState

The requested adjustment is not possible under the current system state.

Trait Implementations

impl Clone for AdjustTimeError[src]

impl Copy for AdjustTimeError[src]

impl Debug for AdjustTimeError[src]

impl Eq for AdjustTimeError[src]

impl From<AdjustTimeError> for ResultCode[src]

impl Hash for AdjustTimeError[src]

impl Ord for AdjustTimeError[src]

impl PartialEq<AdjustTimeError> for AdjustTimeError[src]

impl PartialOrd<AdjustTimeError> for AdjustTimeError[src]

impl StructuralEq for AdjustTimeError[src]

impl StructuralPartialEq for AdjustTimeError[src]

Auto Trait Implementations

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.