#[repr(C, packed(1))]pub struct EmbeddedBlockHeader {}Expand description
Embedding-enhanced block header
Fields§
§x: f32§y: f32§z: f32§zoom: f32§depth: u8§layer_id: u8§data_offset: u32§data_len: u16§parent_idx: u32§child_count: u16§crc16: [u8; 2]§embedding_offset: u32§has_embedding: boolAuto Trait Implementations§
impl Freeze for EmbeddedBlockHeader
impl RefUnwindSafe for EmbeddedBlockHeader
impl Send for EmbeddedBlockHeader
impl Sync for EmbeddedBlockHeader
impl Unpin for EmbeddedBlockHeader
impl UnsafeUnpin for EmbeddedBlockHeader
impl UnwindSafe for EmbeddedBlockHeader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more