pub enum HostAccess {
ReadOnly,
WriteOnly,
NoAccess,
ReadWrite,
}
Variants§
Trait Implementations§
Source§impl From<HostAccess> for u64
impl From<HostAccess> for u64
Source§fn from(host_access: HostAccess) -> u64
fn from(host_access: HostAccess) -> u64
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HostAccess
impl RefUnwindSafe for HostAccess
impl Send for HostAccess
impl Sync for HostAccess
impl Unpin for HostAccess
impl UnwindSafe for HostAccess
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