pub struct File_identifier_type(/* private fields */);
Expand description
File identifier type
This type is used to identify an opened file in a file system.
This is similar to a file descriptor in Unix-like systems.
It is a wrapper around File_identifier_inner_type
.
Implementations§
Source§impl File_identifier_type
impl File_identifier_type
pub const Size_bits: u8 = 32u8
pub const Standard_in: File_identifier_type = _
pub const Standard_out: File_identifier_type = _
pub const Standard_error: File_identifier_type = _
pub const Minimum: File_identifier_type = _
pub const Maximum: File_identifier_type = _
pub const fn New(Identifier: File_identifier_inner_type) -> Self
pub const fn Into_inner(self) -> File_identifier_inner_type
Trait Implementations§
Source§impl Clone for File_identifier_type
impl Clone for File_identifier_type
Source§fn clone(&self) -> File_identifier_type
fn clone(&self) -> File_identifier_type
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for File_identifier_type
impl Debug for File_identifier_type
Source§impl From<File_identifier_type> for File_identifier_inner_type
impl From<File_identifier_type> for File_identifier_inner_type
Source§fn from(Internal_file_identifier: File_identifier_type) -> Self
fn from(Internal_file_identifier: File_identifier_type) -> Self
Converts to this type from the input type.
Source§impl From<u32> for File_identifier_type
impl From<u32> for File_identifier_type
Source§fn from(Internal_file_identifier: File_identifier_inner_type) -> Self
fn from(Internal_file_identifier: File_identifier_inner_type) -> Self
Converts to this type from the input type.
Source§impl Hash for File_identifier_type
impl Hash for File_identifier_type
Source§impl Ord for File_identifier_type
impl Ord for File_identifier_type
Source§fn cmp(&self, other: &File_identifier_type) -> Ordering
fn cmp(&self, other: &File_identifier_type) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for File_identifier_type
impl PartialEq for File_identifier_type
Source§impl PartialOrd for File_identifier_type
impl PartialOrd for File_identifier_type
impl Copy for File_identifier_type
impl Eq for File_identifier_type
impl StructuralPartialEq for File_identifier_type
Auto Trait Implementations§
impl Freeze for File_identifier_type
impl RefUnwindSafe for File_identifier_type
impl Send for File_identifier_type
impl Sync for File_identifier_type
impl Unpin for File_identifier_type
impl UnwindSafe for File_identifier_type
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