pub struct VmStoreVarIdx(/* private fields */);Implementations§
Trait Implementations§
Source§impl Add<u8> for VmStoreVarIdx
impl Add<u8> for VmStoreVarIdx
Source§impl Clone for VmStoreVarIdx
impl Clone for VmStoreVarIdx
Source§fn clone(&self) -> VmStoreVarIdx
fn clone(&self) -> VmStoreVarIdx
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VmStoreVarIdx
impl Debug for VmStoreVarIdx
Source§impl From<VmStoreVarIdx> for VmStackValue
impl From<VmStoreVarIdx> for VmStackValue
Source§fn from(value: VmStoreVarIdx) -> Self
fn from(value: VmStoreVarIdx) -> Self
Converts to this type from the input type.
Source§impl From<u8> for VmStoreVarIdx
impl From<u8> for VmStoreVarIdx
Source§impl PartialEq for VmStoreVarIdx
impl PartialEq for VmStoreVarIdx
Source§impl PartialOrd for VmStoreVarIdx
impl PartialOrd for VmStoreVarIdx
Source§impl TryFrom<VmStackValue> for VmStoreVarIdx
impl TryFrom<VmStackValue> for VmStoreVarIdx
Source§type Error = TryIntoError<VmStackValue>
type Error = TryIntoError<VmStackValue>
The type returned in the event of a conversion error.
Source§fn try_from(value: VmStackValue) -> Result<Self, TryIntoError<VmStackValue>>
fn try_from(value: VmStackValue) -> Result<Self, TryIntoError<VmStackValue>>
Performs the conversion.
Source§impl TryFrom<usize> for VmStoreVarIdx
impl TryFrom<usize> for VmStoreVarIdx
impl Copy for VmStoreVarIdx
impl Eq for VmStoreVarIdx
impl StructuralPartialEq for VmStoreVarIdx
Auto Trait Implementations§
impl Freeze for VmStoreVarIdx
impl RefUnwindSafe for VmStoreVarIdx
impl Send for VmStoreVarIdx
impl Sync for VmStoreVarIdx
impl Unpin for VmStoreVarIdx
impl UnwindSafe for VmStoreVarIdx
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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