pub struct Descriptor { /* private fields */ }
Expand description

A file descriptor that reference an open file. Also contains flags that change the behaviour of this file descriptor.

Implementations§

source§

impl Descriptor

source

pub fn new(file: CompatFile) -> Self

source

pub fn file(&self) -> &CompatFile

source

pub fn flags(&self) -> DescriptorFlags

source

pub fn set_flags(&mut self, flags: DescriptorFlags)

source

pub fn into_file(self) -> CompatFile

source

pub fn close( self, host: &Host, cb_queue: &mut CallbackQueue ) -> Option<Result<(), SyscallError>>

Close the descriptor. The host option is a legacy option for legacy file.

source

pub fn dup(&self, flags: DescriptorFlags) -> Self

Duplicate the descriptor, with both descriptors pointing to the same OpenFile. In Linux, the descriptor flags aren’t typically copied to the new descriptor, so we explicitly require a flags value to avoid confusion.

source

pub fn into_raw(descriptor: Box<Self>) -> *mut Self

source

pub fn from_raw(descriptor: *mut Self) -> Option<Box<Self>>

source

pub unsafe fn from_legacy_file( legacy_file: *mut LegacyFile, descriptor_flags: OFlag ) -> Descriptor

The new descriptor takes ownership of the reference to the legacy file and does not increment its ref count, but will decrement the ref count when this descriptor is freed/dropped with descriptor_free(). The descriptor flags must be either 0 or O_CLOEXEC.

If creating a descriptor for a TCP object, you should use descriptor_fromLegacyTcp instead. If legacy_file is a TCP socket, this function will panic.

§Safety

Takes ownership of legacy_file, which must be safely dereferenceable.

Trait Implementations§

source§

impl Clone for Descriptor

source§

fn clone(&self) -> Descriptor

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Descriptor

source§

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

Formats the value using the given formatter. Read more
source§

impl IsSend for Descriptor

source§

impl IsSync for Descriptor

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> NoTypeInference for T

§

type This = T

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> Host for T
where T: Debug + Send + 'static,

source§

impl<T> Host for T
where T: Debug + Send,

source§

impl<T> Host for T
where T: Host + Host,