pub struct Abbreviation {
pub operands: Vec<Operand>,
}
Expand description
An Abbreviation
represents the encoding definition for a user-defined
record. An Abbreviation
is the primary form of compression available in
a bitstream file.
Fields§
§operands: Vec<Operand>
Abbreviation operands
Trait Implementations§
Source§impl Clone for Abbreviation
impl Clone for Abbreviation
Source§fn clone(&self) -> Abbreviation
fn clone(&self) -> Abbreviation
Returns a copy 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 Abbreviation
impl RefUnwindSafe for Abbreviation
impl Send for Abbreviation
impl Sync for Abbreviation
impl Unpin for Abbreviation
impl UnwindSafe for Abbreviation
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