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 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 RadialGradientCacheKey
 
impl Debug for RadialGradientCacheKey
Source§impl Hash for RadialGradientCacheKey
 
impl Hash for RadialGradientCacheKey
Source§impl PartialEq for RadialGradientCacheKey
 
impl PartialEq for RadialGradientCacheKey
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> 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