Enum sprs::stack::StackVal[][src]

pub enum StackVal<I> {
    Enter(I),
    Exit(I),
}

Variants

Trait Implementations

impl<I: Clone> Clone for StackVal<I>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: Copy> Copy for StackVal<I>
[src]

impl<I: PartialEq> PartialEq for StackVal<I>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<I: Eq> Eq for StackVal<I>
[src]

impl<I: Debug> Debug for StackVal<I>
[src]

Formats the value using the given formatter. Read more

impl<I: Default> Default for StackVal<I>
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl<I> Send for StackVal<I> where
    I: Send

impl<I> Sync for StackVal<I> where
    I: Sync