pub trait OptionalLocation {
    fn start(&self) -> Option<u32>;
    fn end(&self) -> Option<u32>;
}

Required Methods§

Implementations on Foreign Types§

Implementors§