pub enum FileRefMut<'a> {
    Pipe(AtomicRefMut<'a, Pipe>),
    EventFd(AtomicRefMut<'a, EventFd>),
    Socket(SocketRefMut<'a>),
    TimerFd(AtomicRefMut<'a, TimerFd>),
    Epoll(AtomicRefMut<'a, Epoll>),
}
Expand description

Wraps a mutably borrowed File. Created from File::borrow_mut or File::try_borrow_mut.

Variants§

§

Pipe(AtomicRefMut<'a, Pipe>)

§

EventFd(AtomicRefMut<'a, EventFd>)

§

Socket(SocketRefMut<'a>)

§

TimerFd(AtomicRefMut<'a, TimerFd>)

§

Epoll(AtomicRefMut<'a, Epoll>)

Implementations§

source§

impl FileRefMut<'_>

source

pub fn state(&self) -> FileState

source

pub fn mode(&self) -> FileMode

source

pub fn status(&self) -> FileStatus

source

pub fn has_open_file(&self) -> bool

source

pub fn supports_sa_restart(&self) -> bool

source

pub fn set_has_open_file(&mut self, val: bool)

source

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

source

pub fn set_status(&mut self, status: FileStatus)

source

pub fn ioctl( &mut self, request: IoctlRequest, arg_ptr: ForeignPtr<()>, memory_manager: &mut MemoryManager ) -> SyscallResult

source

pub fn add_listener( &mut self, monitoring_state: FileState, monitoring_signals: FileSignals, filter: StateListenerFilter, notify_fn: impl Fn(FileState, FileState, FileSignals, &mut CallbackQueue) + Send + Sync + 'static ) -> StateListenHandle

source

pub fn add_legacy_listener(&mut self, ptr: HostTreePointer<StatusListener>)

source

pub fn remove_legacy_listener(&mut self, ptr: *mut StatusListener)

source

pub fn readv( &mut self, iovs: &[IoVec], offset: Option<off_t>, flags: c_int, mem: &mut MemoryManager, cb_queue: &mut CallbackQueue ) -> Result<ssize_t, SyscallError>

source

pub fn writev( &mut self, iovs: &[IoVec], offset: Option<off_t>, flags: c_int, mem: &mut MemoryManager, cb_queue: &mut CallbackQueue ) -> Result<ssize_t, SyscallError>

Trait Implementations§

source§

impl Debug for FileRefMut<'_>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for FileRefMut<'a>

§

impl<'a> !RefUnwindSafe for FileRefMut<'a>

§

impl<'a> Send for FileRefMut<'a>

§

impl<'a> Sync for FileRefMut<'a>

§

impl<'a> Unpin for FileRefMut<'a>

§

impl<'a> !UnwindSafe for FileRefMut<'a>

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

source§

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

source§

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