pub trait WithSyntaxSection<'buf>: Bufer<'buf> {
// Provided methods
fn b(&self) -> &'buf [u8] ⓘ { ... }
fn version_number(&self) -> u8 { ... }
fn current_next_indicator(&self) -> bool { ... }
fn section_number(&self) -> u8 { ... }
fn last_section_number(&self) -> u8 { ... }
}Provided Methods§
fn version_number(&self) -> u8
fn current_next_indicator(&self) -> bool
fn section_number(&self) -> u8
fn last_section_number(&self) -> u8
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".