pub enum ImageReference {
None,
AbsolutePath(String),
EmbeddedData {
resource_id: usize,
extension: String,
},
EmbeddedTexture {
resource_id: usize,
},
}
Variants§
Trait Implementations§
source§impl Clone for ImageReference
impl Clone for ImageReference
source§fn clone(&self) -> ImageReference
fn clone(&self) -> ImageReference
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more