pub enum BinaryConstants {}
Expand description
Constant values for the binary format header.
The binary header is magic + version info + table count.
Implementations
sourceimpl BinaryConstants
impl BinaryConstants
sourcepub const DIEM_MAGIC_SIZE: usize
pub const DIEM_MAGIC_SIZE: usize
The blob that must start a binary.
pub const DIEM_MAGIC: [u8; 4]
sourcepub const HEADER_SIZE: usize
pub const HEADER_SIZE: usize
The DIEM_MAGIC
size, 4 byte for major version and 1 byte for table count.
sourcepub const TABLE_HEADER_SIZE: u8
pub const TABLE_HEADER_SIZE: u8
A (Table Type, Start Offset, Byte Count) size, which is 1 byte for the type and 4 bytes for the offset/count.
Auto Trait Implementations
impl RefUnwindSafe for BinaryConstants
impl Send for BinaryConstants
impl Sync for BinaryConstants
impl Unpin for BinaryConstants
impl UnwindSafe for BinaryConstants
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more