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 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 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§impl PartialEq<ValueType> for StackValueType
 
impl PartialEq<ValueType> for StackValueType
Source§impl PartialEq for StackValueType
 
impl PartialEq for StackValueType
impl Copy for StackValueType
Auto Trait Implementations§
impl Freeze for StackValueType
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