pub struct RealDirectory {Show 18 fields
pub file_name: String,
pub comment_len: u16,
pub unknown3: Option<u16>,
pub comment: String,
pub unknown4: u16,
pub unknown5: u16,
pub file_code: FourCC,
pub creator_code: FourCC,
pub finder_flags: FinderFlags,
pub unknown7a: i16,
pub unknown7b: i16,
pub unknown7c: u8,
pub unknown7d: u8,
pub unknown7e: i16,
pub unknown7f: i16,
pub unknown7: [u8; 8],
pub unknown6a: Option<u16>,
pub unknown6b: Option<u16>,
}Fields§
§file_name: String§comment_len: u16§unknown3: Option<u16>§comment: String§unknown4: u16§unknown5: u16§file_code: FourCC§creator_code: FourCC§finder_flags: FinderFlags§unknown7a: i16§unknown7b: i16§unknown7c: u8§unknown7d: u8§unknown7e: i16§unknown7f: i16§unknown7: [u8; 8]§unknown6a: Option<u16>§unknown6b: Option<u16>Trait Implementations§
Source§impl BinRead for RealDirectory
impl BinRead for RealDirectory
Source§type Args<'__binrw_generated_args_lifetime> = RealDirectoryBinReadArgs
type Args<'__binrw_generated_args_lifetime> = RealDirectoryBinReadArgs
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_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader using the given arguments. 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§impl Clone for RealDirectory
impl Clone for RealDirectory
Source§fn clone(&self) -> RealDirectory
fn clone(&self) -> RealDirectory
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 RealDirectory
impl Debug for RealDirectory
Source§impl ReadEndian for RealDirectory
impl ReadEndian for RealDirectory
Source§const ENDIAN: EndianKind
const ENDIAN: EndianKind
The endianness of the type.
Auto Trait Implementations§
impl Freeze for RealDirectory
impl RefUnwindSafe for RealDirectory
impl Send for RealDirectory
impl Sync for RealDirectory
impl Unpin for RealDirectory
impl UnsafeUnpin for RealDirectory
impl UnwindSafe for RealDirectory
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