pub struct LiteralsSection {
pub block_type: LiteralsBlockType,
pub regenerated_size: usize,
pub compressed_size: usize,
/* private fields */
}Expand description
Parsed literals section.
Fields§
§block_type: LiteralsBlockTypeBlock type.
regenerated_size: usizeRegenerated (uncompressed) size.
compressed_size: usizeCompressed size (for compressed modes).
Implementations§
Trait Implementations§
Source§impl Clone for LiteralsSection
impl Clone for LiteralsSection
Source§fn clone(&self) -> LiteralsSection
fn clone(&self) -> LiteralsSection
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 moreAuto Trait Implementations§
impl Freeze for LiteralsSection
impl RefUnwindSafe for LiteralsSection
impl Send for LiteralsSection
impl Sync for LiteralsSection
impl Unpin for LiteralsSection
impl UnwindSafe for LiteralsSection
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