pub enum RenderTaskCacheKeyKind {
BoxShadow(BoxShadowCacheKey),
Image(ImageCacheKey),
BorderSegment(BorderSegmentCacheKey),
LineDecoration(LineDecorationCacheKey),
FastLinearGradient(FastLinearGradientTask),
LinearGradient(LinearGradientCacheKey),
RadialGradient(RadialGradientCacheKey),
ConicGradient(ConicGradientCacheKey),
Snapshot(SnapshotImageKey),
}Variants§
BoxShadow(BoxShadowCacheKey)
Image(ImageCacheKey)
BorderSegment(BorderSegmentCacheKey)
LineDecoration(LineDecorationCacheKey)
FastLinearGradient(FastLinearGradientTask)
LinearGradient(LinearGradientCacheKey)
RadialGradient(RadialGradientCacheKey)
ConicGradient(ConicGradientCacheKey)
Snapshot(SnapshotImageKey)
Trait Implementations§
Source§impl Clone for RenderTaskCacheKeyKind
impl Clone for RenderTaskCacheKeyKind
Source§fn clone(&self) -> RenderTaskCacheKeyKind
fn clone(&self) -> RenderTaskCacheKeyKind
Returns a duplicate 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 RenderTaskCacheKeyKind
impl Debug for RenderTaskCacheKeyKind
Source§impl Hash for RenderTaskCacheKeyKind
impl Hash for RenderTaskCacheKeyKind
Source§impl PartialEq for RenderTaskCacheKeyKind
impl PartialEq for RenderTaskCacheKeyKind
Source§impl Serialize for RenderTaskCacheKeyKind
impl Serialize for RenderTaskCacheKeyKind
impl Eq for RenderTaskCacheKeyKind
impl StructuralPartialEq for RenderTaskCacheKeyKind
Auto Trait Implementations§
impl Freeze for RenderTaskCacheKeyKind
impl RefUnwindSafe for RenderTaskCacheKeyKind
impl Send for RenderTaskCacheKeyKind
impl Sync for RenderTaskCacheKeyKind
impl Unpin for RenderTaskCacheKeyKind
impl UnwindSafe for RenderTaskCacheKeyKind
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§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