pub enum Preopentype {
Dir,
}
Available on crate feature
preview1
only.Variants§
Dir
Trait Implementations§
Source§impl Clone for Preopentype
impl Clone for Preopentype
Source§fn clone(&self) -> Preopentype
fn clone(&self) -> Preopentype
Returns a copy 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 Preopentype
impl Debug for Preopentype
Source§impl From<Preopentype> for u8
impl From<Preopentype> for u8
Source§fn from(v: Preopentype) -> u8
fn from(v: Preopentype) -> u8
Converts to this type from the input type.
Source§impl GuestType for Preopentype
impl GuestType for Preopentype
Source§fn guest_size() -> u32
fn guest_size() -> u32
Returns the size, in bytes, of this type in the guest memory.
Source§fn guest_align() -> usize
fn guest_align() -> usize
Returns the required alignment of this type, in bytes, for both guest
and host memory.
Source§fn read(
mem: &GuestMemory<'_>,
location: GuestPtr<Self>,
) -> Result<Self, GuestError>
fn read( mem: &GuestMemory<'_>, location: GuestPtr<Self>, ) -> Result<Self, GuestError>
Reads this value from the provided
ptr
. Read moreSource§fn write(
mem: &mut GuestMemory<'_>,
location: GuestPtr<Self>,
val: Self,
) -> Result<(), GuestError>
fn write( mem: &mut GuestMemory<'_>, location: GuestPtr<Self>, val: Self, ) -> Result<(), GuestError>
Source§impl PartialEq for Preopentype
impl PartialEq for Preopentype
Source§impl TryFrom<i32> for Preopentype
impl TryFrom<i32> for Preopentype
Source§type Error = GuestError
type Error = GuestError
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<Preopentype, GuestError>
fn try_from(value: i32) -> Result<Preopentype, GuestError>
Performs the conversion.
Source§impl TryFrom<u8> for Preopentype
impl TryFrom<u8> for Preopentype
Source§type Error = GuestError
type Error = GuestError
The type returned in the event of a conversion error.
Source§fn try_from(value: u8) -> Result<Preopentype, GuestError>
fn try_from(value: u8) -> Result<Preopentype, GuestError>
Performs the conversion.
impl Copy for Preopentype
impl StructuralPartialEq for Preopentype
Auto Trait Implementations§
impl Freeze for Preopentype
impl RefUnwindSafe for Preopentype
impl Send for Preopentype
impl Sync for Preopentype
impl Unpin for Preopentype
impl UnwindSafe for Preopentype
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self
file descriptor. Read more