Struct webrender::prim_store::gradient::radial::RadialGradientCacheKey
source · pub struct RadialGradientCacheKey {
pub size: DeviceIntSize,
pub center: PointKey,
pub scale: PointKey,
pub start_radius: FloatKey,
pub end_radius: FloatKey,
pub ratio_xy: FloatKey,
pub extend_mode: ExtendMode,
pub stops: Vec<GradientStopKey>,
}
Fields§
§size: DeviceIntSize
§center: PointKey
§scale: PointKey
§start_radius: FloatKey
§end_radius: FloatKey
§ratio_xy: FloatKey
§extend_mode: ExtendMode
§stops: Vec<GradientStopKey>
Trait Implementations§
source§impl Clone for RadialGradientCacheKey
impl Clone for RadialGradientCacheKey
source§fn clone(&self) -> RadialGradientCacheKey
fn clone(&self) -> RadialGradientCacheKey
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 RadialGradientCacheKey
impl Debug for RadialGradientCacheKey
source§impl Hash for RadialGradientCacheKey
impl Hash for RadialGradientCacheKey
source§impl PartialEq for RadialGradientCacheKey
impl PartialEq for RadialGradientCacheKey
source§fn eq(&self, other: &RadialGradientCacheKey) -> bool
fn eq(&self, other: &RadialGradientCacheKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for RadialGradientCacheKey
impl Serialize for RadialGradientCacheKey
impl Eq for RadialGradientCacheKey
impl StructuralPartialEq for RadialGradientCacheKey
Auto Trait Implementations§
impl Freeze for RadialGradientCacheKey
impl RefUnwindSafe for RadialGradientCacheKey
impl Send for RadialGradientCacheKey
impl Sync for RadialGradientCacheKey
impl Unpin for RadialGradientCacheKey
impl UnwindSafe for RadialGradientCacheKey
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