pub struct LogContainer {
pub compressed_size: u32,
pub compression_method: u16,
pub uncompressed_size: u32,
/* private fields */
}Fields§
§compressed_size: u32§compression_method: u16§uncompressed_size: u32Implementations§
Source§impl LogContainer
impl LogContainer
pub fn into_iter(self, prev_data: &[u8]) -> LogContainerIter ⓘ
Trait Implementations§
Source§impl BinRead for LogContainer
impl BinRead for LogContainer
Source§type Args<'__binrw_generated_args_lifetime> = LogContainerBinReadArgs
type Args<'__binrw_generated_args_lifetime> = LogContainerBinReadArgs
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 Debug for LogContainer
impl Debug for LogContainer
Source§impl ReadEndian for LogContainer
impl ReadEndian for LogContainer
Source§const ENDIAN: EndianKind
const ENDIAN: EndianKind
The endianness of the type.
Auto Trait Implementations§
impl Freeze for LogContainer
impl RefUnwindSafe for LogContainer
impl Send for LogContainer
impl Sync for LogContainer
impl Unpin for LogContainer
impl UnwindSafe for LogContainer
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