pub struct BenFrame {
pub max_val_bits: u8,
pub max_len_bits: u8,
pub count: u16,
pub n_bytes: u32,
pub raw_data: Vec<u8>,
}Expand description
A single frame from a BEN file.
Fields§
§max_val_bits: u8§max_len_bits: u8§count: u16§n_bytes: u32§raw_data: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for BenFrame
impl RefUnwindSafe for BenFrame
impl Send for BenFrame
impl Sync for BenFrame
impl Unpin for BenFrame
impl UnwindSafe for BenFrame
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