pub struct SectionHeaderEntry {
pub label: String,
pub offset: usize,
pub data: Vec<u8>,
pub ixs: Vec<Ix>,
pub utf8: String,
}Fields§
§label: String§offset: usize§data: Vec<u8>§ixs: Vec<Ix>§utf8: StringImplementations§
Trait Implementations§
Source§impl Clone for SectionHeaderEntry
impl Clone for SectionHeaderEntry
Source§fn clone(&self) -> SectionHeaderEntry
fn clone(&self) -> SectionHeaderEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 SectionHeaderEntry
impl Debug for SectionHeaderEntry
Source§impl<'de> Deserialize<'de> for SectionHeaderEntry
impl<'de> Deserialize<'de> for SectionHeaderEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SectionHeaderEntry
impl RefUnwindSafe for SectionHeaderEntry
impl Send for SectionHeaderEntry
impl Sync for SectionHeaderEntry
impl Unpin for SectionHeaderEntry
impl UnwindSafe for SectionHeaderEntry
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