Trait Track
oatie::doc
pub trait Track: Copy + Debug + PartialEq + Sized { fn do_split(&self) -> bool; fn do_open_split(&self) -> bool; fn supports_text(&self) -> bool; fn allowed_in_root(&self) -> bool; fn is_object(&self) -> bool; fn parents(&self) -> Vec<Self>; fn ancestors(&self) -> Vec<Self>; }
fn do_split(&self) -> bool
fn do_open_split(&self) -> bool
fn supports_text(&self) -> bool
fn allowed_in_root(&self) -> bool
fn is_object(&self) -> bool
fn parents(&self) -> Vec<Self>
fn ancestors(&self) -> Vec<Self>
impl Track for RtfTrack