pub enum MissingAccessArgError {
StateDelta,
StateLen,
StateValueIx,
StateSlotIx,
PredDataLen,
PredDataValueIx,
PredDataSlotIx,
}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.
PredDataLen
Missing len argument for PredicateData operation.
PredDataValueIx
Missing value_ix argument for PredicateData operation.
PredDataSlotIx
Missing slot_ix argument for PredicateData 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) -> AccessError
fn from(source: MissingAccessArgError) -> AccessError
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