pub enum ImageData {
Raw(Arc<Vec<u8>>),
External(ExternalImageData),
}
Expand description
Represents the backing store of an arbitrary series of pixels for display by WebRender. 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.
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§
Source§impl ImageData
impl ImageData
pub fn new_raw(data: Vec<u8>) -> Self
pub fn new_external(data: ExternalImageData) -> Self
Trait Implementations§
Source§impl Ord for ImageData
impl Ord for ImageData
Source§impl PartialOrd for ImageData
impl PartialOrd for ImageData
impl Eq for ImageData
impl StructuralPartialEq for ImageData
Auto Trait Implementations§
impl Freeze for ImageData
impl RefUnwindSafe for ImageData
impl Send for ImageData
impl Sync for ImageData
impl Unpin for ImageData
impl UnwindSafe for ImageData
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)