Struct webrender::prim_store::image::ImageCacheKey
source · pub struct ImageCacheKey {
pub request: ImageRequest,
pub texel_rect: Option<DeviceIntRect>,
}
Fields§
§request: ImageRequest
§texel_rect: Option<DeviceIntRect>
Trait Implementations§
source§impl Clone for ImageCacheKey
impl Clone for ImageCacheKey
source§fn clone(&self) -> ImageCacheKey
fn clone(&self) -> ImageCacheKey
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 ImageCacheKey
impl Debug for ImageCacheKey
source§impl Hash for ImageCacheKey
impl Hash for ImageCacheKey
source§impl PartialEq for ImageCacheKey
impl PartialEq for ImageCacheKey
source§fn eq(&self, other: &ImageCacheKey) -> bool
fn eq(&self, other: &ImageCacheKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ImageCacheKey
impl Serialize for ImageCacheKey
impl Copy for ImageCacheKey
impl Eq for ImageCacheKey
impl StructuralPartialEq for ImageCacheKey
Auto Trait Implementations§
impl Freeze for ImageCacheKey
impl RefUnwindSafe for ImageCacheKey
impl Send for ImageCacheKey
impl Sync for ImageCacheKey
impl Unpin for ImageCacheKey
impl UnwindSafe for ImageCacheKey
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