#[repr(transparent)]pub struct FileInfoIdx(pub u32);
Tuple Fields§
§0: u32
Trait Implementations§
Source§impl BinRead for FileInfoIdx
impl BinRead for FileInfoIdx
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
Source§fn read_be<R>(reader: &mut R) -> Result<Self, Error>
fn read_be<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments and assuming
big-endian byte order. Read moreSource§fn read_le<R>(reader: &mut R) -> Result<Self, Error>
fn read_le<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments and assuming
little-endian byte order. Read moreSource§fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
Read
T
from the reader assuming native-endian byte order. Read moreSource§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader, assuming big-endian byte order, using the
given arguments. Read moreSource§fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader, assuming little-endian byte order, using
the given arguments. Read moreSource§impl Clone for FileInfoIdx
impl Clone for FileInfoIdx
Source§fn clone(&self) -> FileInfoIdx
fn clone(&self) -> FileInfoIdx
Returns a duplicate 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 FileInfoIdx
impl Debug for FileInfoIdx
Source§impl From<FileInfoIdx> for u32
impl From<FileInfoIdx> for u32
Source§fn from(index: FileInfoIdx) -> Self
fn from(index: FileInfoIdx) -> Self
Converts to this type from the input type.
Source§impl From<FileInfoIdx> for usize
impl From<FileInfoIdx> for usize
Source§fn from(index: FileInfoIdx) -> Self
fn from(index: FileInfoIdx) -> Self
Converts to this type from the input type.
Source§impl From<u32> for FileInfoIdx
impl From<u32> for FileInfoIdx
Source§impl From<usize> for FileInfoIdx
impl From<usize> for FileInfoIdx
Source§impl Hash for FileInfoIdx
impl Hash for FileInfoIdx
Source§impl Index<FileInfoIdx> for [FileInfo]
impl Index<FileInfoIdx> for [FileInfo]
Source§impl IndexMut<FileInfoIdx> for [FileInfo]
impl IndexMut<FileInfoIdx> for [FileInfo]
Source§impl Ord for FileInfoIdx
impl Ord for FileInfoIdx
Source§fn cmp(&self, other: &FileInfoIdx) -> Ordering
fn cmp(&self, other: &FileInfoIdx) -> 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 FileInfoIdx
impl PartialEq for FileInfoIdx
Source§impl PartialOrd for FileInfoIdx
impl PartialOrd for FileInfoIdx
impl Copy for FileInfoIdx
impl Eq for FileInfoIdx
impl StructuralPartialEq for FileInfoIdx
Auto Trait Implementations§
impl Freeze for FileInfoIdx
impl RefUnwindSafe for FileInfoIdx
impl Send for FileInfoIdx
impl Sync for FileInfoIdx
impl Unpin for FileInfoIdx
impl UnwindSafe for FileInfoIdx
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