pub struct CompleteTable<T> { /* private fields */ }Expand description
Generic complete table view for one collected section set.
This is the all-table escape hatch: every long-form PSI/SI table with
section_number/last_section_number can be collected into a
CompleteSectionSet and parsed as CompleteTable<T>. Table-specific
complete views such as CompleteNit add flattened convenience fields where
the logical table shape is useful.
Implementations§
Source§impl<T> CompleteTable<T>
impl<T> CompleteTable<T>
Sourcepub const fn meta(&self) -> SectionSetMeta
pub const fn meta(&self) -> SectionSetMeta
Metadata shared by the section set.
Sourcepub fn into_sections(self) -> Vec<T>
pub fn into_sections(self) -> Vec<T>
Consume the complete table and return the parsed sections.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for CompleteTable<T>
impl<T> RefUnwindSafe for CompleteTable<T>where
T: RefUnwindSafe,
impl<T> Send for CompleteTable<T>where
T: Send,
impl<T> Sync for CompleteTable<T>where
T: Sync,
impl<T> Unpin for CompleteTable<T>where
T: Unpin,
impl<T> UnsafeUnpin for CompleteTable<T>
impl<T> UnwindSafe for CompleteTable<T>where
T: UnwindSafe,
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