pub struct SidecarMap {
pub schema: u32,
pub entries: Vec<MapEntry>,
}Expand description
Sidecar map: entry ↔ feature anchors (TECH-SPEC §4.5, schema v1).
Fields§
§schema: u32Schema version (MAP_SCHEMA_VERSION).
entries: Vec<MapEntry>One record per emitted entry block, in file order.
Trait Implementations§
Source§impl Clone for SidecarMap
impl Clone for SidecarMap
Source§fn clone(&self) -> SidecarMap
fn clone(&self) -> SidecarMap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SidecarMap
impl Debug for SidecarMap
Auto Trait Implementations§
impl Freeze for SidecarMap
impl RefUnwindSafe for SidecarMap
impl Send for SidecarMap
impl Sync for SidecarMap
impl Unpin for SidecarMap
impl UnsafeUnpin for SidecarMap
impl UnwindSafe for SidecarMap
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