pub enum StackStatus {
Ok {
used_bytes: usize,
free_bytes: usize,
},
NearOverflow {
bytes_remaining: usize,
},
Overflow {
overflow_bytes: usize,
},
Corrupted {
corrupted_bytes: usize,
location: StackCorruption,
},
}
Variants§
Trait Implementations§
Source§impl Clone for StackStatus
impl Clone for StackStatus
Source§fn clone(&self) -> StackStatus
fn clone(&self) -> StackStatus
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 StackStatus
impl Debug for StackStatus
impl Copy for StackStatus
Auto Trait Implementations§
impl Freeze for StackStatus
impl RefUnwindSafe for StackStatus
impl Send for StackStatus
impl Sync for StackStatus
impl Unpin for StackStatus
impl UnwindSafe for StackStatus
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