Struct File

Source
pub struct File { /* private fields */ }
Expand description

File wrapper for axfs::fops::File.

Implementations§

Source§

impl File

Source

pub fn new(inner: File, path: String) -> Self

Source

pub fn path(&self) -> &str

Get the path of the file.

Source

pub fn inner(&self) -> MutexGuard<'_, File>

Get the inner node of the file.

Trait Implementations§

Source§

impl FileLike for File

Source§

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

Source§

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

Source§

fn stat(&self) -> LinuxResult<Kstat>

Source§

fn into_any(self: Arc<Self>) -> Arc<dyn Any + Send + Sync>

Source§

fn poll(&self) -> LinuxResult<PollState>

Source§

fn set_nonblocking(&self, _nonblocking: bool) -> LinuxResult

Source§

fn from_fd(fd: c_int) -> LinuxResult<Arc<Self>>
where Self: Sized + 'static,

Source§

fn add_to_fd_table(self) -> LinuxResult<c_int>
where Self: Sized + 'static,

Auto Trait Implementations§

§

impl !Freeze for File

§

impl !RefUnwindSafe for File

§

impl Send for File

§

impl Sync for File

§

impl Unpin for File

§

impl !UnwindSafe for File

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

Source§

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

Source§

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.