pub trait SliceableContent {
    // Required method
    fn slice_content(
        &self,
        from: usize,
        to: usize
    ) -> Box<dyn InsertContentTrait>;
}
Expand description

@deprecated

Required Methods§

source

fn slice_content(&self, from: usize, to: usize) -> Box<dyn InsertContentTrait>

Implementors§