pub struct Block {
pub coders: Vec<Coder>,
pub has_crc: bool,
pub crc: u64,
/* private fields */
}Fields§
§coders: Vec<Coder>§has_crc: bool§crc: u64Implementations§
Source§impl Block
impl Block
pub fn get_unpack_size(&self) -> u64
pub fn get_unpack_size_for_coder(&self, coder: &Coder) -> u64
pub fn get_unpack_size_at_index(&self, index: usize) -> u64
pub fn ordered_coder_iter(&self) -> OrderedCoderIter<'_> ⓘ
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