Struct open_how

#[repr(C)]
#[non_exhaustive]
pub struct open_how { pub flags: __u64, pub mode: __u64, pub resolve: __u64 }

Fields

flags: __u64
mode: __u64
resolve: __u64

Trait Implementations

impl Clone for open_how

fn clone(&self) -> open_how

impl Copy for open_how

impl Debug for open_how

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for open_how

impl Hash for open_how

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for open_how

fn eq(&self, other: &open_how) -> bool

impl StructuralPartialEq for open_how

Auto Trait Implementations

impl Freeze for open_how

impl RefUnwindSafe for open_how

impl Send for open_how

impl Sync for open_how

impl Unpin for open_how

impl UnsafeUnpin for open_how

impl UnwindSafe for open_how

Blanket Implementations

impl<T> Any for open_how where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for open_how where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for open_how where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for open_how where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for open_how

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for open_how where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for open_how where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for open_how where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>