[][src]Struct onig::EncodedBytes

pub struct EncodedBytes<'a> { /* fields omitted */ }

Byte Buffer

Represents a buffer of bytes, with an encoding.

Methods

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

pub fn from_parts(bytes: &'a [u8], enc: OnigEncoding) -> EncodedBytes<'a>[src]

New Buffer from Parts

Arguments

  • bytes - The contents of the buffer
  • enc - The encoding this buffer is in

Returns

A new buffer instance

pub fn ascii(bytes: &'a [u8]) -> EncodedBytes<'a>[src]

New ASCII Buffer

Arguments

  • bytes - The ASCII encoded string

Returns

A new buffer instance

Trait Implementations

impl<'a> EncodedChars for EncodedBytes<'a>[src]

fn is_empty(&self) -> bool[src]

Is the buffer empty?

Auto Trait Implementations

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

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

impl<'a> Unpin for EncodedBytes<'a>

impl<'a> RefUnwindSafe for EncodedBytes<'a>

impl<'a> UnwindSafe for EncodedBytes<'a>

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]