#[repr(u32)]pub enum switch_stack_t {
SWITCH_STACK_BOTTOM = 1,
SWITCH_STACK_TOP = 2,
SWITCH_STACK_UNSHIFT = 4,
SWITCH_STACK_PUSH = 8,
}Variants§
Trait Implementations§
Source§impl Clone for switch_stack_t
impl Clone for switch_stack_t
Source§fn clone(&self) -> switch_stack_t
fn clone(&self) -> switch_stack_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 switch_stack_t
impl Debug for switch_stack_t
Source§impl Hash for switch_stack_t
impl Hash for switch_stack_t
Source§impl PartialEq for switch_stack_t
impl PartialEq for switch_stack_t
Source§fn eq(&self, other: &switch_stack_t) -> bool
fn eq(&self, other: &switch_stack_t) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for switch_stack_t
impl Eq for switch_stack_t
impl StructuralPartialEq for switch_stack_t
Auto Trait Implementations§
impl Freeze for switch_stack_t
impl RefUnwindSafe for switch_stack_t
impl Send for switch_stack_t
impl Sync for switch_stack_t
impl Unpin for switch_stack_t
impl UnsafeUnpin for switch_stack_t
impl UnwindSafe for switch_stack_t
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