pub struct Handle {
pub memory: SliceHandle,
pub offset_start: Option<u64>,
pub offset_end: Option<u64>,
/* private fields */
}
Expand description
Server handle containing the memory handle.
Fields§
§memory: SliceHandle
Memory handle.
offset_start: Option<u64>
Memory offset in bytes.
offset_end: Option<u64>
Memory offset in bytes.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Handle
impl RefUnwindSafe for Handle
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl UnwindSafe for Handle
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