pub trait SectionCore {
const KIND: u8;
fn core_len(&self) -> usize;
fn data_len(&self) -> usize;
fn kind(&self) -> u8 { ... }
fn len(&self) -> usize { ... }
fn raw_data(&self) -> Option<&[u8]> { ... }
}
Expand description
A generic interface for data segments’ sections
This trait will probably be renamed in future versions
Required Associated Constants
Required Methods
Provided Methods
Get the supported section’s ID
This will probably be deprecated in future releases