pub trait HasStartStopStrand {
// Provided methods
fn start(&self) -> Option<RangeValue> { ... }
fn stop(&self) -> Option<RangeValue> { ... }
fn strand(&self) -> Option<i8> { ... }
}Expand description
Traits to unify attribute enums across formats. Existing enums can implement Into these trait views if needed