pub struct CodeTableEntryFile {
pub string: String,
pub value: u16,
pub flags: u16,
pub lenght: u16,
pub unk: u16,
}Expand description
Represent a single entry of a Unicode character <-> placeholder text pair.
Fields§
§string: String§value: u16§flags: u16§lenght: u16§unk: u16Trait Implementations§
Source§impl BinRead for CodeTableEntryFile
impl BinRead for CodeTableEntryFile
Source§type Args = ()
type Args = ()
The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more
Source§fn read_options<R: Read + Seek>(
__binread_generated_var_reader: &mut R,
__binread_generated_var_options: &ReadOptions,
__binread_generated_var_arguments: Self::Args,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binread_generated_var_reader: &mut R, __binread_generated_var_options: &ReadOptions, __binread_generated_var_arguments: Self::Args, ) -> BinResult<Self>
Read the type from the reader
Source§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read the type from the reader while assuming no arguments have been passed Read more
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 the type from the reader using the specified arguments
fn after_parse<R>( &mut self, _: &mut R, _: &ReadOptions, _: Self::Args, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for CodeTableEntryFile
impl RefUnwindSafe for CodeTableEntryFile
impl Send for CodeTableEntryFile
impl Sync for CodeTableEntryFile
impl Unpin for CodeTableEntryFile
impl UnwindSafe for CodeTableEntryFile
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