pub struct Block {
pub header: Header,
pub data: Data,
}Available on crate feature
tzif only.Expand description
Combined header and data block.
According to RFC, there can be currently 2 blocks: 1 for V1 header/data and 1 for V2+ header/data.
Fields§
§header: HeaderThe header block.
data: DataThe associated data block.
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