#[repr(C)]pub struct GuestStack {
pub min_user_stack_address: u64,
pub user_stack_address: u64,
}
Expand description
A memory region in the guest address space that is used for the stack
Fields§
§min_user_stack_address: u64
The top of the user stack
user_stack_address: u64
The user stack pointer
Trait Implementations§
Source§impl Clone for GuestStack
impl Clone for GuestStack
Source§fn clone(&self) -> GuestStack
fn clone(&self) -> GuestStack
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 GuestStack
impl Debug for GuestStack
impl Copy for GuestStack
Auto Trait Implementations§
impl Freeze for GuestStack
impl RefUnwindSafe for GuestStack
impl Send for GuestStack
impl Sync for GuestStack
impl Unpin for GuestStack
impl UnwindSafe for GuestStack
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