#[repr(C)]pub struct MkdirParams {
pub path: GuestPhysAddr,
pub len: u64,
pub ret: MkdirResult,
}Expand description
Parameters for a Mkdir hypercall.
Fields§
§path: GuestPhysAddrPath to create. Zero terminated C-String.
len: u64Length of the path buffer.
ret: MkdirResultReturn value of the hypercall.
Trait Implementations§
Source§impl Clone for MkdirParams
impl Clone for MkdirParams
Source§fn clone(&self) -> MkdirParams
fn clone(&self) -> MkdirParams
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 MkdirParams
Auto Trait Implementations§
impl Freeze for MkdirParams
impl RefUnwindSafe for MkdirParams
impl Send for MkdirParams
impl Sync for MkdirParams
impl Unpin for MkdirParams
impl UnsafeUnpin for MkdirParams
impl UnwindSafe for MkdirParams
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