#[repr(C)]pub struct StackRequest {
pub usable_size: usize,
pub alignment: usize,
pub guard_size: usize,
}Expand description
Stack allocation requirements supplied to the runtime.
Fields§
§usable_size: usizeUsable stack bytes, excluding the guard region.
alignment: usizeRequired stack alignment in bytes.
guard_size: usizeNumber of inaccessible guard bytes below the usable range.
Trait Implementations§
Source§impl Clone for StackRequest
impl Clone for StackRequest
Source§fn clone(&self) -> StackRequest
fn clone(&self) -> StackRequest
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 moreimpl Copy for StackRequest
Source§impl Debug for StackRequest
impl Debug for StackRequest
impl Eq for StackRequest
Source§impl PartialEq for StackRequest
impl PartialEq for StackRequest
impl StructuralPartialEq for StackRequest
Auto Trait Implementations§
impl Freeze for StackRequest
impl RefUnwindSafe for StackRequest
impl Send for StackRequest
impl Sync for StackRequest
impl Unpin for StackRequest
impl UnsafeUnpin for StackRequest
impl UnwindSafe for StackRequest
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