style::values::generics::calc

Type Alias GenericCalcAnchorSizeFunction

Source
pub type GenericCalcAnchorSizeFunction<L> = GenericAnchorSizeFunction<Box<GenericCalcNode<L>>>;
Expand description

anchor-size() function used in math functions.

Aliased Type§

struct GenericCalcAnchorSizeFunction<L> {
    pub target_element: DashedIdent,
    pub size: AnchorSizeKeyword,
    pub fallback: Optional<Box<GenericCalcNode<L>>>,
}

Fields§

§target_element: DashedIdent

Anchor name of the element to anchor to. If omitted (i.e. empty), selects the implicit anchor element.

§size: AnchorSizeKeyword

Size of the positioned element, expressed in that of the anchor element. If omitted, defaults to the axis of the property the function is used in.

§fallback: Optional<Box<GenericCalcNode<L>>>

Value to use in case the anchor function is invalid.

Implementations

Source§

impl GenericAnchorSizeFunction<Box<CalcNode>>

Source

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

Source§

impl<LengthPercentage> GenericAnchorSizeFunction<LengthPercentage>

Source

pub fn parse_inner<'i, 't, F>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, f: F, ) -> Result<Self, ParseError<'i>>
where F: FnOnce(&mut Parser<'i, '_>) -> Result<LengthPercentage, ParseError<'i>>,

Parse the inner part of anchor-size(), after the parser has consumed “anchor-size(”.

Source

pub fn resolve<'a>( &'a self, position_property: PositionProperty, ) -> AnchorResolutionResult<'a, LengthPercentage>

Resolve the anchor size function. On failure, return reference to fallback, if exists.

Trait Implementations

Source§

impl<LengthPercentage> Animate for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: Animate,

Source§

fn animate(&self, other: &Self, procedure: Procedure) -> Result<Self, ()>

Animate a value towards another one, given an animation procedure.
Source§

impl<LengthPercentage: Clone> Clone for GenericAnchorSizeFunction<LengthPercentage>

Source§

fn clone(&self) -> GenericAnchorSizeFunction<LengthPercentage>

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<LengthPercentage> ComputeSquaredDistance for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ComputeSquaredDistance,

Source§

fn compute_squared_distance(&self, other: &Self) -> Result<SquaredDistance, ()>

Computes the squared distance between two animatable values.
Source§

impl<LengthPercentage: Debug> Debug for GenericAnchorSizeFunction<LengthPercentage>

Source§

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

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

impl<'de, LengthPercentage> Deserialize<'de> for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<LengthPercentage> MallocSizeOf for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: 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<LengthPercentage> Parse for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: Parse,

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<LengthPercentage: PartialEq> PartialEq for GenericAnchorSizeFunction<LengthPercentage>

Source§

fn eq(&self, other: &GenericAnchorSizeFunction<LengthPercentage>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<LengthPercentage> Serialize for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<LengthPercentage> SpecifiedValueInfo for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: 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<LengthPercentage> ToAnimatedValue for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ToAnimatedValue,

Source§

type AnimatedValue = GenericAnchorSizeFunction<<LengthPercentage as ToAnimatedValue>::AnimatedValue>

The type of the animated value.
Source§

fn from_animated_value(from: Self::AnimatedValue) -> Self

Converts back an animated value into a computed value.
Source§

fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue

Converts this value to an animated value.
Source§

impl<LengthPercentage> ToAnimatedZero for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ToAnimatedZero,

Source§

fn to_animated_zero(&self) -> Result<Self, ()>

Returns a value that, when added with an underlying value, will produce the underlying value. This is used for SMIL animation’s “by-animation” where SMIL first interpolates from the zero value to the ‘by’ value, and then adds the result to the underlying value. Read more
Source§

impl<LengthPercentage> ToComputedValue for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ToComputedValue,

Source§

type ComputedValue = GenericAnchorSizeFunction<<LengthPercentage 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<LengthPercentage> ToCss for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ToCss,

Source§

fn to_css<W>(&self, dest: &mut CssWriter<'_, W>) -> Result
where 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<LengthPercentage> ToResolvedValue for GenericAnchorSizeFunction<LengthPercentage>
where LengthPercentage: ToResolvedValue,

Source§

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