pub enum StackValueType {
Any,
Specific(ValueType),
}Expand description
Value type on the stack.
Variants§
Trait Implementations§
source§impl Clone for StackValueType
impl Clone for StackValueType
source§fn clone(&self) -> StackValueType
fn clone(&self) -> StackValueType
Returns a copy 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 StackValueType
impl Debug for StackValueType
source§impl From<ValueType> for StackValueType
impl From<ValueType> for StackValueType
source§impl PartialEq<StackValueType> for ValueType
impl PartialEq<StackValueType> for ValueType
source§fn eq(&self, other: &StackValueType) -> bool
fn eq(&self, other: &StackValueType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialEq<ValueType> for StackValueType
impl PartialEq<ValueType> for StackValueType
source§impl PartialEq for StackValueType
impl PartialEq for StackValueType
source§fn eq(&self, other: &StackValueType) -> bool
fn eq(&self, other: &StackValueType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for StackValueType
Auto Trait Implementations§
impl RefUnwindSafe for StackValueType
impl Send for StackValueType
impl Sync for StackValueType
impl Unpin for StackValueType
impl UnwindSafe for StackValueType
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