Struct libredox::Fd

source ·
pub struct Fd(/* private fields */);

Implementations§

source§

impl Fd

source

pub fn open(path: &str, flags: i32, mode: u16) -> Result<Self>

source

pub fn dup(&self, buf: &[u8]) -> Result<usize>

source

pub fn dup2(&self, new_fd: usize, buf: &[u8]) -> Result<usize>

source

pub const fn raw(&self) -> usize

source

pub fn into_raw(self) -> usize

source

pub fn read(&self, buf: &mut [u8]) -> Result<usize>

source

pub fn write(&self, buf: &[u8]) -> Result<usize>

source

pub fn fpath(&self, path: &mut [u8]) -> Result<usize>

source

pub fn fsync(&self) -> Result<()>

source

pub fn fdatasync(&self) -> Result<()>

source

pub fn chmod(&self, new_mode: u16) -> Result<()>

source

pub fn chown(&self, new_uid: u32, new_gid: u32) -> Result<()>

source

pub fn stat(&self) -> Result<Stat>

source

pub fn statvfs(&self) -> Result<StatVfs>

source

pub fn close(self) -> Result<()>

Trait Implementations§

source§

impl Drop for Fd

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl Freeze for Fd

§

impl RefUnwindSafe for Fd

§

impl Send for Fd

§

impl Sync for Fd

§

impl Unpin for Fd

§

impl UnwindSafe for Fd

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> 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, 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.