pub struct FileDescriptorReservation { /* private fields */ }
Expand description
A file descriptor reservation.
This allows the creation of a file descriptor in two steps: first, we reserve a slot for it, then we commit or drop the reservation. The first step may fail (e.g., the current process ran out of available slots), but commit and drop never fail (and are mutually exclusive).
Dropping the reservation happens in the destructor of this type.
§Invariants
The fd stored in this struct must correspond to a reserved file descriptor of the current task.
Implementations§
Source§impl FileDescriptorReservation
impl FileDescriptorReservation
Sourcepub fn get_unused_fd_flags(flags: u32) -> Result<Self>
pub fn get_unused_fd_flags(flags: u32) -> Result<Self>
Creates a new file descriptor reservation.
Sourcepub fn reserved_fd(&self) -> u32
pub fn reserved_fd(&self) -> u32
Returns the file descriptor number that was reserved.
Sourcepub fn fd_install(self, file: ARef<File>)
pub fn fd_install(self, file: ARef<File>)
Commits the reservation.
The previously reserved file descriptor is bound to file
. This method consumes the
FileDescriptorReservation
, so it will not be usable after this call.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileDescriptorReservation
impl RefUnwindSafe for FileDescriptorReservation
impl !Send for FileDescriptorReservation
impl !Sync for FileDescriptorReservation
impl Unpin for FileDescriptorReservation
impl UnwindSafe for FileDescriptorReservation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more