Type Alias style::values::computed::image::ImageSet

source ·
pub type ImageSet = GenericImageSet<Image, Resolution>;
Expand description

The computed value for an image-set() image.

Aliased Type§

struct ImageSet {
    pub selected_index: usize,
    pub items: OwnedSlice<GenericImageSetItem<GenericImage<GenericGradient<LineDirection, LengthPercentage, NonNegative<CSSPixelLength>, NonNegative<LengthPercentage>, GenericPosition<LengthPercentage, LengthPercentage>, Angle, AngleOrPercentage, GenericColor<Percentage>>, ComputedUrl, GenericColor<Percentage>, Percentage, Resolution>, Resolution>>,
}

Fields§

§selected_index: usize

The index of the selected candidate. usize::MAX for specified values or invalid images.

§items: OwnedSlice<GenericImageSetItem<GenericImage<GenericGradient<LineDirection, LengthPercentage, NonNegative<CSSPixelLength>, NonNegative<LengthPercentage>, GenericPosition<LengthPercentage, LengthPercentage>, Angle, AngleOrPercentage, GenericColor<Percentage>>, ComputedUrl, GenericColor<Percentage>, Percentage, Resolution>, Resolution>>

All of the image and resolution pairs.

Trait Implementations§

source§

impl<Image: Clone, Resolution: Clone> Clone for GenericImageSet<Image, Resolution>

source§

fn clone(&self) -> GenericImageSet<Image, Resolution>

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<Image: Debug, Resolution: Debug> Debug for GenericImageSet<Image, Resolution>

source§

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

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

impl<Image, Resolution> MallocSizeOf for GenericImageSet<Image, Resolution>where Image: MallocSizeOf, Resolution: 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<Image: PartialEq, Resolution: PartialEq> PartialEq<GenericImageSet<Image, Resolution>> for GenericImageSet<Image, Resolution>

source§

fn eq(&self, other: &GenericImageSet<Image, Resolution>) -> 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<Image, Resolution> SpecifiedValueInfo for ImageSet<Image, Resolution>

source§

const SUPPORTED_TYPES: u8 = 0u8

Supported CssTypes by the given value type. Read more
source§

fn collect_completion_keywords(f: KeywordsCollectFn<'_>)

Collect value starting words for the given specified value type. This includes keyword and function names which can appear at the beginning of a value of this type. Read more
source§

impl<Image, Resolution> ToCss for GenericImageSet<Image, Resolution>where Image: ToCss, Resolution: 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<Image, Resolution> ToResolvedValue for GenericImageSet<Image, Resolution>where Image: ToResolvedValue, Resolution: ToResolvedValue,

§

type ResolvedValue = GenericImageSet<<Image as ToResolvedValue>::ResolvedValue, <Resolution 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<Image, Resolution> ToShmem for GenericImageSet<Image, Resolution>where Image: ToShmem, Resolution: 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<Image, Resolution> StructuralPartialEq for GenericImageSet<Image, Resolution>