Struct minime::renderer::RenderData[][src]

pub struct RenderData<'b> { /* fields omitted */ }

Implementations

impl<'b> RenderData<'b>[src]

pub fn new(buf: &'b Rope, focus: Cursor, anchor: Option<Cursor>) -> Self[src]

pub fn focus(&self) -> Cursor[src]

pub fn line_count(&self) -> usize[src]

pub fn char_count(&self) -> usize[src]

pub fn write_line(&self, line_idx: usize, write: &mut dyn Write) -> Result<()>[src]

pub fn line(&self, index: usize) -> Cow<'_, str>[src]

pub fn last_line(&self) -> Cow<'_, str>[src]

pub fn current_line(&self) -> Cow<'_, str>[src]

Trait Implementations

impl<'b> Clone for RenderData<'b>[src]

impl<'b> Copy for RenderData<'b>[src]

Auto Trait Implementations

impl<'b> RefUnwindSafe for RenderData<'b>

impl<'b> Send for RenderData<'b>

impl<'b> Sync for RenderData<'b>

impl<'b> Unpin for RenderData<'b>

impl<'b> UnwindSafe for RenderData<'b>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.