Struct LineBuffer

Source
pub struct LineBuffer<B: Buffer> { /* private fields */ }
Expand description

High level interface to line buffer

Implementations§

Source§

impl LineBuffer<UnboundedBuffer>

Source

pub fn new_unbounded() -> Self

Create new static line buffer

Source§

impl<'a> LineBuffer<SliceBuffer<'a>>

Source

pub fn from_slice(buffer: &'a mut [u8]) -> Self

Create new static line buffer

Source§

impl<B: Buffer> LineBuffer<B>

Source

pub fn as_slice(&self) -> &[u8]

Return buffer as bytes slice

Source

pub fn len(&self) -> usize

Return buffer length

Source

pub fn as_str(&self) -> &str

Return buffer as string. The buffer should only hold a valid UTF-8, so this function is infallible.

Source

pub fn delete(&mut self, char_index: usize)

Delete character at character index.

Source

pub fn delete_after_char(&mut self, char_index: usize)

Delete buffer after character index

Source

pub fn truncate(&mut self)

Truncate buffer

Source

pub fn delete_previous_word(&mut self, char_index: usize) -> usize

Delete previous word from character index

Source

pub fn swap_chars(&mut self, char_index: usize)

Swap characters at index

Source

pub unsafe fn insert_bytes( &mut self, index: usize, bytes: &[u8], ) -> Result<(), ()>

Insert bytes at index

§Safety

The caller must ensure that the input bytes are a valid UTF-8 sequence and that the byte index aligns with a valid UTF-8 character index.

Source

pub fn insert_utf8_char( &mut self, char_index: usize, c: Utf8Char, ) -> Result<(), Utf8Char>

Insert UTF-8 char at position

Source

pub fn insert_str(&mut self, char_index: usize, s: &str) -> Result<(), ()>

Insert string at char position

Auto Trait Implementations§

§

impl<B> Freeze for LineBuffer<B>
where B: Freeze,

§

impl<B> RefUnwindSafe for LineBuffer<B>
where B: RefUnwindSafe,

§

impl<B> Send for LineBuffer<B>
where B: Send,

§

impl<B> Sync for LineBuffer<B>
where B: Sync,

§

impl<B> Unpin for LineBuffer<B>
where B: Unpin,

§

impl<B> UnwindSafe for LineBuffer<B>
where B: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.