pub struct CopyOp {
src_addr: *const u8,
dst_addr: *mut u8,
size: usize,
}
Expand description
Copy operation from the guest memory to the staging memory.
Fields§
§src_addr: *const u8
§dst_addr: *mut u8
§size: usize
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CopyOp
impl !Sync for CopyOp
impl Unpin for CopyOp
impl UnwindSafe for CopyOp
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