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