Enum psm::StackDirection
source · [−]pub enum StackDirection {
Ascending,
Descending,
}
Expand description
The direction into which stack grows as stack frames are made.
This is a target-specific property that can be obtained at runtime by calling
StackDirection::new()
.
Variants
Ascending
Descending
Implementations
sourceimpl StackDirection
impl StackDirection
sourcepub fn new() -> StackDirection
pub fn new() -> StackDirection
Obtain the stack growth direction.
Trait Implementations
sourceimpl Clone for StackDirection
impl Clone for StackDirection
sourcefn clone(&self) -> StackDirection
fn clone(&self) -> StackDirection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StackDirection
impl Debug for StackDirection
sourceimpl PartialEq<StackDirection> for StackDirection
impl PartialEq<StackDirection> for StackDirection
impl Copy for StackDirection
impl Eq for StackDirection
impl StructuralEq for StackDirection
impl StructuralPartialEq for StackDirection
Auto Trait Implementations
impl RefUnwindSafe for StackDirection
impl Send for StackDirection
impl Sync for StackDirection
impl Unpin for StackDirection
impl UnwindSafe for StackDirection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more