pub struct SectionSetMeta {
pub key: SectionSetKey,
pub version_number: u8,
pub last_section_number: u8,
}Expand description
Metadata shared by every section in a complete section set.
Fields§
§key: SectionSetKeyLogical section-set key.
version_number: u85-bit version_number.
last_section_number: u8Last section number for this set.
Trait Implementations§
Source§impl Clone for SectionSetMeta
impl Clone for SectionSetMeta
Source§fn clone(&self) -> SectionSetMeta
fn clone(&self) -> SectionSetMeta
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 moreimpl Copy for SectionSetMeta
Source§impl Debug for SectionSetMeta
impl Debug for SectionSetMeta
impl Eq for SectionSetMeta
Source§impl PartialEq for SectionSetMeta
impl PartialEq for SectionSetMeta
Source§fn eq(&self, other: &SectionSetMeta) -> bool
fn eq(&self, other: &SectionSetMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SectionSetMeta
Auto Trait Implementations§
impl Freeze for SectionSetMeta
impl RefUnwindSafe for SectionSetMeta
impl Send for SectionSetMeta
impl Sync for SectionSetMeta
impl Unpin for SectionSetMeta
impl UnsafeUnpin for SectionSetMeta
impl UnwindSafe for SectionSetMeta
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