pub struct Record {
pub abbrev_id: Option<u64>,
pub code: u64,
pub fields: Fields,
}Expand description
Represents a single bitstream record.
Fields§
§abbrev_id: Option<u64>The abbreviation ID that was used to parse this record, or None if
this record was parsed from an UNABBREV_RECORD encoding.
code: u64The code that identifies the record’s kind.
fields: FieldsThe fields of this record.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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