[][src]Struct libavif::AvifData

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

Implementations

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

pub fn new(b: &'a [u8]) -> Self[src]

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

Extracts a slice containg the entire data without doing clones or allocation.

pub fn to_vec(&self) -> Vec<u8>[src]

Converts self into a new vector by cloning the entire data.

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

Returns the number of bytes of avif data

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

Returns true if the avif data is of zero length

Trait Implementations

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

type Target = [u8]

The resulting type after dereferencing.

impl<'_> Drop for AvifData<'_>[src]

impl<'a> From<avifRWData> for AvifData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AvifData<'a>

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

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

impl<'a> Unpin for AvifData<'a>

impl<'a> UnwindSafe for AvifData<'a>

Blanket Implementations

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

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

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

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.