[][src]Enum fonterator::SharedBytes

pub enum SharedBytes<'a> {
    ByRef(&'a [u8]),
    ByArc(Arc<[u8]>),
}

SharedBytes handles the lifetime of font data used in Fonterator. The data is either a shared reference to externally owned data, or managed by reference counting. SharedBytes can be conveniently used with From and Into, and dereferences to the contained bytes.

Variants

ByRef(&'a [u8])ByArc(Arc<[u8]>)

Trait Implementations

impl<'a> From<&'a [u8]> for SharedBytes<'a>[src]

impl From<Arc<[u8]>> for SharedBytes<'static>[src]

impl From<Box<[u8]>> for SharedBytes<'static>[src]

impl From<Vec<u8>> for SharedBytes<'static>[src]

impl<'a> Clone for SharedBytes<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Deref for SharedBytes<'a>[src]

type Target = [u8]

The resulting type after dereferencing.

impl<'a> Debug for SharedBytes<'a>[src]

Auto Trait Implementations

impl<'a> Send for SharedBytes<'a>

impl<'a> Sync for SharedBytes<'a>

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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