[][src]Trait flo_rope::rope::Utf8Rope

pub trait Utf8Rope {
    fn from_str(string: &str) -> Self;
fn to_string_lossy(&self) -> String; }

Trait implemented by attributed ropes that can work as strings

Required methods

fn from_str(string: &str) -> Self

Creates a rope from a string

fn to_string_lossy(&self) -> String

Converts this rope to a string

Loading content...

Implementors

impl<R: Default + RopeMut<Cell = u8>> Utf8Rope for R[src]

fn from_str(string: &str) -> Self[src]

Creates a rope containing a string value

fn to_string_lossy(&self) -> String[src]

Converts this rope to a string

Loading content...