Struct file_handle

#[repr(C)]
pub struct file_handle { pub handle_bytes: c_uint, pub handle_type: c_int, pub f_handle: [c_uchar; 0] }

Fields

handle_bytes: c_uint
handle_type: c_int
f_handle: [c_uchar; 0]

Trait Implementations

impl Clone for file_handle

fn clone(&self) -> file_handle

impl Copy for file_handle

impl Debug for file_handle

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

impl Eq for file_handle

impl Hash for file_handle

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

impl PartialEq for file_handle

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

impl StructuralPartialEq for file_handle

Auto Trait Implementations

impl Freeze for file_handle

impl RefUnwindSafe for file_handle

impl Send for file_handle

impl Sync for file_handle

impl Unpin for file_handle

impl UnsafeUnpin for file_handle

impl UnwindSafe for file_handle

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

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

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

impl<T> From<T> for file_handle

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for file_handle 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 file_handle where U: Into<T>,

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

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

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