pub struct RstSection {
pub entries: Vec<RstEntry>,
}Expand description
Running Status Table (§5.2.8, Table 10).
Fields§
§entries: Vec<RstEntry>Entries in wire order.
Trait Implementations§
Source§impl Clone for RstSection
impl Clone for RstSection
Source§fn clone(&self) -> RstSection
fn clone(&self) -> RstSection
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 RstSection
impl Debug for RstSection
impl Eq for RstSection
Source§impl<'a> From<RstSection> for AnyTableSection<'a>
impl<'a> From<RstSection> for AnyTableSection<'a>
Source§fn from(t: RstSection) -> Self
fn from(t: RstSection) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for RstSection
impl<'a> Parse<'a> for RstSection
Source§impl PartialEq for RstSection
impl PartialEq for RstSection
Source§fn eq(&self, other: &RstSection) -> bool
fn eq(&self, other: &RstSection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RstSection
impl Serialize for RstSection
Source§impl Serialize for RstSection
impl Serialize for RstSection
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for RstSection
Source§impl TableDef<'_> for RstSection
impl TableDef<'_> for RstSection
Auto Trait Implementations§
impl Freeze for RstSection
impl RefUnwindSafe for RstSection
impl Send for RstSection
impl Sync for RstSection
impl Unpin for RstSection
impl UnsafeUnpin for RstSection
impl UnwindSafe for RstSection
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