pub struct StackStats {
pub total_size: usize,
pub usable_size: usize,
pub guard_size: usize,
pub current_usage: usize,
pub peak_usage: usize,
pub red_zone_size: usize,
}
Fields§
§total_size: usize
§usable_size: usize
§guard_size: usize
§current_usage: usize
§peak_usage: usize
§red_zone_size: usize
Trait Implementations§
Source§impl Clone for StackStats
impl Clone for StackStats
Source§fn clone(&self) -> StackStats
fn clone(&self) -> StackStats
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 StackStats
impl Debug for StackStats
impl Copy for StackStats
Auto Trait Implementations§
impl Freeze for StackStats
impl RefUnwindSafe for StackStats
impl Send for StackStats
impl Sync for StackStats
impl Unpin for StackStats
impl UnwindSafe for StackStats
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