[][src]Struct accepted::Buffer

pub struct Buffer<'a> {
    pub path: Option<PathBuf>,
    pub core: Core,
    pub search: Vec<char>,
    pub syntax: Syntax<'a>,
    pub snippet: BTreeMap<String, String>,
    pub yank: Yank,
    pub last_save: Wrapping<usize>,
    // some fields omitted
}

Fields

path: Option<PathBuf>core: Coresearch: Vec<char>syntax: Syntax<'a>snippet: BTreeMap<String, String>yank: Yanklast_save: Wrapping<usize>

Methods

impl<'a> Buffer<'a>[src]

pub fn new(syntax: Syntax<'a>) -> Self[src]

pub fn open<P: AsRef<Path>>(&mut self, path: P)[src]

pub fn save(&self) -> Option<Result<()>>[src]

pub fn draw(&self, view: View) -> Option<Cursor>[src]

pub fn draw_with_selected(
    &self,
    view: View,
    selected: Option<CursorRange>
) -> Option<Cursor>
[src]

Auto Trait Implementations

impl<'a> !Send for Buffer<'a>

impl<'a> !Sync for Buffer<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<E> SpecializationError for E[src]

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

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

impl<T> Erased for T[src]