pub enum MissingAccessArgError {
StateDelta,
StateLen,
StateValueIx,
StateSlotIx,
DecVarLen,
DecVarValueIx,
DecVarSlotIx,
}
Expand description
Missing argument error.
Variants§
StateDelta
Missing delta
argument for State
operation.
StateLen
Missing len
argument for State
operation.
StateValueIx
Missing value_ix
argument for State
operation.
StateSlotIx
Missing slot_ix
argument for State
operation.
DecVarLen
Missing len
argument for DecisionVar
operation.
DecVarValueIx
Missing value_ix
argument for DecisionVar
operation.
DecVarSlotIx
Missing slot_ix
argument for DecisionVar
operation.
Trait Implementations§
Source§impl Debug for MissingAccessArgError
impl Debug for MissingAccessArgError
Source§impl Display for MissingAccessArgError
impl Display for MissingAccessArgError
Source§impl Error for MissingAccessArgError
impl Error for MissingAccessArgError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<MissingAccessArgError> for AccessError
impl From<MissingAccessArgError> for AccessError
Source§fn from(source: MissingAccessArgError) -> Self
fn from(source: MissingAccessArgError) -> Self
Converts to this type from the input type.
Source§impl From<MissingAccessArgError> for OpError
impl From<MissingAccessArgError> for OpError
Source§fn from(err: MissingAccessArgError) -> Self
fn from(err: MissingAccessArgError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MissingAccessArgError
impl RefUnwindSafe for MissingAccessArgError
impl Send for MissingAccessArgError
impl Sync for MissingAccessArgError
impl Unpin for MissingAccessArgError
impl UnwindSafe for MissingAccessArgError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more