pub enum MissingAccessArgError {
Show 13 variants
PubVarPathwayIx,
PubVarKey,
PubVarKeyLen,
PubVarValueIx,
PubVarValueLen,
StateDelta,
StateLen,
StateValueIx,
StateSlotIx,
DecVarLen,
DecVarValueIx,
DecVarSlotIx,
PushPubVarKeysPathwayIx,
}Expand description
Missing argument error.
Variants§
PubVarPathwayIx
Missing pathway_ix`` argument for PubVar` operation.
PubVarKey
Missing key argument for PubVar operation.
PubVarKeyLen
Missing key_len argument for PubVar operation.
PubVarValueIx
Missing value_ix argument for PubVar operation.
PubVarValueLen
Missing value_len argument for PubVar operation.
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.
PushPubVarKeysPathwayIx
Missing pathway_ix argument for PushPubVarKeys 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.81.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.81.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) -> AccessError
fn from(source: MissingAccessArgError) -> AccessError
Converts to this type from the input type.
source§impl From<MissingAccessArgError> for OpError
impl From<MissingAccessArgError> for OpError
source§fn from(err: MissingAccessArgError) -> OpError
fn from(err: MissingAccessArgError) -> OpError
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