pub enum ImageReference {
None,
AbsolutePath(String),
EmbeddedData {
resource_id: usize,
extension: String,
},
EmbeddedTexture {
resource_id: usize,
},
}
Variants
None
AbsolutePath(String)
EmbeddedData
EmbeddedTexture
Fields
resource_id: usize
Trait Implementations
sourceimpl Clone for ImageReference
impl Clone for ImageReference
sourcefn clone(&self) -> ImageReference
fn clone(&self) -> ImageReference
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for ImageReference
impl Send for ImageReference
impl Sync for ImageReference
impl Unpin for ImageReference
impl UnwindSafe for ImageReference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more