Type Alias style::values::specified::GridLine

source ·
pub type GridLine = GridLine<Integer>;
Expand description

The specified value of a <grid-line>.

Aliased Type§

struct GridLine {
    pub ident: Atom<AtomStaticSet>,
    pub line_num: Integer,
    pub is_span: bool,
}

Fields§

§ident: Atom<AtomStaticSet>

A custom identifier for named lines, or the empty atom otherwise.

https://drafts.csswg.org/css-grid/#grid-placement-slot

§line_num: Integer

Denotes the nth grid line from grid item’s placement.

This is clamped by MIN_GRID_LINE and MAX_GRID_LINE.

NOTE(emilio): If we ever allow animating these we need to either do something more complicated for the clamping, or do this clamping at used-value time.

§is_span: bool

Flag to check whether it’s a span keyword.

Implementations§

source§

impl<Integer> GridLine<Integer>where Integer: PartialEq + Zero,

source

pub fn auto() -> Self

The auto value.

source

pub fn is_auto(&self) -> bool

Check whether this <grid-line> represents an auto value.

source

pub fn is_ident_only(&self) -> bool

Check whether this <grid-line> represents a <custom-ident> value.

source

pub fn can_omit(&self, other: &Self) -> bool

Check if self makes other omittable according to the rules at: https://drafts.csswg.org/css-grid/#propdef-grid-column https://drafts.csswg.org/css-grid/#propdef-grid-area

Trait Implementations§

source§

impl<Integer: Clone> Clone for GenericGridLine<Integer>

source§

fn clone(&self) -> GenericGridLine<Integer>

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<Integer: Debug> Debug for GenericGridLine<Integer>

source§

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

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

impl<Integer: Default> Default for GenericGridLine<Integer>

source§

fn default() -> GenericGridLine<Integer>

Returns the “default value” for a type. Read more
source§

impl<Integer> MallocSizeOf for GenericGridLine<Integer>where Integer: 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 Parse for GridLine<Integer>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't> ) -> Result<Self, ParseError<'i>>

Parse a value of this type. Read more
source§

impl<Integer: PartialEq> PartialEq<GenericGridLine<Integer>> for GenericGridLine<Integer>

source§

fn eq(&self, other: &GenericGridLine<Integer>) -> 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<Integer> SpecifiedValueInfo for GenericGridLine<Integer>where Integer: SpecifiedValueInfo,

source§

const SUPPORTED_TYPES: u8 = _

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

fn collect_completion_keywords(_f: &mut dyn FnMut(&[&'static str]))

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<Integer> ToComputedValue for GenericGridLine<Integer>where Integer: ToComputedValue,

§

type ComputedValue = GenericGridLine<<Integer 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<Integer> ToCss for GridLine<Integer>where Integer: ToCss + PartialEq + Zero,

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<Integer> ToResolvedValue for GenericGridLine<Integer>where Integer: ToResolvedValue,

§

type ResolvedValue = GenericGridLine<<Integer 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<Integer> ToShmem for GenericGridLine<Integer>where Integer: 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<Integer> StructuralPartialEq for GenericGridLine<Integer>