Type Alias style::values::computed::image::EndingShape

source ·
pub type EndingShape = GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>;
Expand description

A computed radial gradient ending shape.

Aliased Type§

enum EndingShape {
    Circle(GenericCircle<NonNegative<CSSPixelLength>>),
    Ellipse(GenericEllipse<NonNegative<LengthPercentage>>),
}

Variants§

§

Circle(GenericCircle<NonNegative<CSSPixelLength>>)

A circular gradient.

§

Ellipse(GenericEllipse<NonNegative<LengthPercentage>>)

An elliptic gradient.

Trait Implementations§

source§

impl<NonNegativeLength: Clone, NonNegativeLengthPercentage: Clone> Clone for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>

source§

fn clone( &self ) -> GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<NonNegativeLength: Debug, NonNegativeLengthPercentage: Debug> Debug for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<NonNegativeLength, NonNegativeLengthPercentage> MallocSizeOf for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>where NonNegativeLength: MallocSizeOf, NonNegativeLengthPercentage: MallocSizeOf,

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl<NonNegativeLength: PartialEq, NonNegativeLengthPercentage: PartialEq> PartialEq<GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>> for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>

source§

fn eq( &self, other: &GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage> ) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<NonNegativeLength, NonNegativeLengthPercentage> ToComputedValue for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>where NonNegativeLength: ToComputedValue, NonNegativeLengthPercentage: ToComputedValue,

§

type ComputedValue = GenericEndingShape<<NonNegativeLength as ToComputedValue>::ComputedValue, <NonNegativeLengthPercentage as ToComputedValue>::ComputedValue>

The computed value type we’re going to be converted to.
source§

fn from_computed_value(from: &Self::ComputedValue) -> Self

Convert a computed value to specified value form. Read more
source§

fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue

Convert a specified value to a computed value, using itself and the data inside the Context.
source§

impl<NonNegativeLength, NonNegativeLengthPercentage> ToCss for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>where NonNegativeLength: ToCss, NonNegativeLengthPercentage: ToCss,

source§

fn to_css<W>(&self, dest: &mut CssWriter<'_, W>) -> Resultwhere W: Write,

Serialize self in CSS syntax, writing to dest.
source§

fn to_css_string(&self) -> String

Serialize self in CSS syntax and return a string. Read more
source§

impl<NonNegativeLength, NonNegativeLengthPercentage> ToResolvedValue for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>where NonNegativeLength: ToResolvedValue, NonNegativeLengthPercentage: ToResolvedValue,

§

type ResolvedValue = GenericEndingShape<<NonNegativeLength as ToResolvedValue>::ResolvedValue, <NonNegativeLengthPercentage as ToResolvedValue>::ResolvedValue>

The resolved value type we’re going to be converted to.
source§

fn from_resolved_value(from: Self::ResolvedValue) -> Self

Convert a resolved value to resolved value form.
source§

fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue

Convert a resolved value to a resolved value.
source§

impl<NonNegativeLength, NonNegativeLengthPercentage> ToShmem for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>where NonNegativeLength: ToShmem, NonNegativeLengthPercentage: ToShmem,

source§

fn to_shmem(&self, builder: &mut SharedMemoryBuilder) -> Result<Self>

Clones this value into a form suitable for writing into a SharedMemoryBuilder. Read more
source§

impl<NonNegativeLength: Copy, NonNegativeLengthPercentage: Copy> Copy for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>

source§

impl<NonNegativeLength, NonNegativeLengthPercentage> StructuralPartialEq for GenericEndingShape<NonNegativeLength, NonNegativeLengthPercentage>