pub trait SectionFinder {
// Required methods
fn is_start(&self, line: &LineSpan<'_>) -> bool;
fn is_end(&self, section: &SectionSpan<'_>) -> bool;
}Required Methods§
fn is_start(&self, line: &LineSpan<'_>) -> bool
fn is_end(&self, section: &SectionSpan<'_>) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".