[][src]Struct azul_core::app_resources::ExternalImageData

#[repr(C)]pub struct ExternalImageData {
    pub id: ExternalImageId,
    pub channel_index: u8,
    pub image_type: ExternalImageType,
}

Descriptor for external image resources. See ImageData.

Fields

id: ExternalImageId

The identifier of this external image, provided by the embedding.

channel_index: u8

For multi-plane images (i.e. YUV), indicates the plane of the original image that this struct represents. 0 for single-plane images.

image_type: ExternalImageType

Storage format identifier.

Trait Implementations

impl Clone for ExternalImageData[src]

impl Debug for ExternalImageData[src]

impl Eq for ExternalImageData[src]

impl Hash for ExternalImageData[src]

impl Ord for ExternalImageData[src]

impl PartialEq<ExternalImageData> for ExternalImageData[src]

impl PartialOrd<ExternalImageData> for ExternalImageData[src]

impl StructuralEq for ExternalImageData[src]

impl StructuralPartialEq for ExternalImageData[src]

Auto Trait Implementations

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> 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.