Enum webrender::resource_cache::CachedImageData
source · pub enum CachedImageData {
Raw(Arc<Vec<u8>>),
Blob,
External(ExternalImageData),
}
Expand description
Represents the backing store of an image in the cache. This storage can take several forms.
Variants§
Raw(Arc<Vec<u8>>)
A simple series of bytes, provided by the embedding and owned by WebRender. The format is stored out-of-band, currently in ImageDescriptor.
Blob
An series of commands that can be rasterized into an image via an embedding-provided callback.
The commands are stored elsewhere and this variant is used as a placeholder.
External(ExternalImageData)
An image owned by the embedding, and referenced by WebRender. This may take the form of a texture or a heap-allocated buffer.
Implementations§
Trait Implementations§
source§impl Clone for CachedImageData
impl Clone for CachedImageData
source§fn clone(&self) -> CachedImageData
fn clone(&self) -> CachedImageData
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 moresource§impl Debug for CachedImageData
impl Debug for CachedImageData
Auto Trait Implementations§
impl Freeze for CachedImageData
impl RefUnwindSafe for CachedImageData
impl Send for CachedImageData
impl Sync for CachedImageData
impl Unpin for CachedImageData
impl UnwindSafe for CachedImageData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more