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

The supported section’s ID

This will probably be deprecated in future releases

Required Methods

Get the length of the constant part of the section

Get the length of the variable part of the section

Provided Methods

Get the supported section’s ID

This will probably be deprecated in future releases

Get the full length of the section

Get the raw variable part of the section if any and supported

Implementors