[][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> !Send for EncodedBytes<'a>

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

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.