[][src]Enum sixtyfps_corelib::Resource

#[repr(u8)]pub enum Resource {
    None,
    AbsoluteFilePath(SharedString),
    EmbeddedData(Slice<'static, u8>),
    EmbeddedRgbaImage {
        width: u32,
        height: u32,
        data: SharedArray<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.

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

Fields of EmbeddedRgbaImage

width: u32height: u32data: SharedArray<u32>

Trait Implementations

impl Clone for Resource[src]

impl Debug for Resource[src]

impl Default for Resource[src]

impl PartialEq<Resource> for Resource[src]

impl StructuralPartialEq for Resource[src]

Auto Trait Implementations

impl RefUnwindSafe for Resource

impl !Send for Resource

impl !Sync for Resource

impl Unpin for Resource

impl UnwindSafe for Resource

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.