[][src]Struct note_rs::Notes

pub struct Notes { /* fields omitted */ }

Methods

impl Notes[src]

pub fn new<P: AsRef<Path>>(path: P) -> Self[src]

pub fn delete_line(self, index: usize) -> Self[src]

pub fn delete_range_lines(self, range: RangeInclusive<usize>) -> Self[src]

pub fn append_line(self, line: &str) -> Self[src]

pub fn insert_line(self, index: usize, line: &str) -> Self[src]

pub fn get_line(&self, index: usize) -> String[src]

pub fn get_range_lines(&self, range: RangeInclusive<usize>) -> String[src]

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

pub fn print_line(self, index: usize) -> Self[src]

pub fn print_all_lines(self) -> Self[src]

pub fn flush(self) -> Result<()>[src]

Auto Trait Implementations

impl Send for Notes

impl Sync for Notes

Blanket Implementations

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

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

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.

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

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

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