Enum sixtyfps_corelib::graphics::ImageReference[][src]

#[repr(u8)]
pub enum ImageReference {
    None,
    AbsoluteFilePath(SharedString),
    EmbeddedData(Slice<'static, u8>),
    EmbeddedRgbaImage {
        width: u32,
        height: u32,
        data: SharedVector<u32>,
    },
}

A resource is a reference to binary data, for example images. They can be accessible on the file system or embedded in the resulting binary. Or they might be URLs to a web server and a downloaded is necessary before they can be used.

TODO! If we want to make this type public API, we should not make it an enum, but an opaque type instead

Variants

None

A resource that does not represent any data.

AbsoluteFilePath(SharedString)

A resource that points to a file in the file system

EmbeddedData(Slice<'static, u8>)

A resource that is embedded in the program and accessible via pointer The format is the same as in a file

EmbeddedRgbaImage

Raw ARGB

Show fields

Fields of EmbeddedRgbaImage

width: u32height: u32data: SharedVector<u32>

Trait Implementations

impl Clone for ImageReference[src]

impl Debug for ImageReference[src]

impl Default for ImageReference[src]

impl PartialEq<ImageReference> for ImageReference[src]

impl StructuralPartialEq for ImageReference[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.