pub struct Block {
pub block_id: u64,
pub len: u64,
}
Expand description
Represents a single block scope in the bitstream.
Fields§
§block_id: u64
The ID of the block.
len: u64
The length of the block, in bytes. Blocks are always 32-bit-word-aligned.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Block
impl RefUnwindSafe for Block
impl Send for Block
impl Sync for Block
impl Unpin for Block
impl UnwindSafe for Block
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