style::values::computed::position

Type Alias AnchorFunction

Source
pub type AnchorFunction = GenericAnchorFunction<Percentage, LengthPercentage>;
Expand description

The computed value of an anchor() function.

Aliased Type§

struct AnchorFunction {
    pub target_element: DashedIdent,
    pub side: AnchorSide<Percentage>,
    pub fallback: Optional<LengthPercentage>,
}

Fields§

§target_element: DashedIdent

Anchor name of the element to anchor to. If omitted, selects the implicit anchor element.

§side: AnchorSide<Percentage>

Where relative to the target anchor element to position the anchored element to.

§fallback: Optional<LengthPercentage>

Value to use in case the anchor function is invalid.

Implementations

Source§

impl<Percentage, LengthPercentage> GenericAnchorFunction<Percentage, LengthPercentage>

Source

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

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

Trait Implementations

Source§

impl<Percentage, LengthPercentage> Animate for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: Animate, LengthPercentage: Animate,

Source§

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

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

impl<Percentage: Clone, LengthPercentage: Clone> Clone for GenericAnchorFunction<Percentage, LengthPercentage>

Source§

fn clone(&self) -> GenericAnchorFunction<Percentage, 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<Percentage, LengthPercentage> ComputeSquaredDistance for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ComputeSquaredDistance, LengthPercentage: ComputeSquaredDistance,

Source§

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

Computes the squared distance between two animatable values.
Source§

impl<Percentage: Debug, LengthPercentage: Debug> Debug for GenericAnchorFunction<Percentage, LengthPercentage>

Source§

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

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

impl<'de, Percentage, LengthPercentage> Deserialize<'de> for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: Deserialize<'de>, 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<Percentage, LengthPercentage> MallocSizeOf for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: MallocSizeOf, 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<Percentage: PartialEq, LengthPercentage: PartialEq> PartialEq for GenericAnchorFunction<Percentage, LengthPercentage>

Source§

fn eq( &self, other: &GenericAnchorFunction<Percentage, 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<Percentage, LengthPercentage> Serialize for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: Serialize, 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<Percentage, LengthPercentage> SpecifiedValueInfo for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: SpecifiedValueInfo, 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<Percentage, LengthPercentage> ToAnimatedValue for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToAnimatedValue, LengthPercentage: ToAnimatedValue,

Source§

type AnimatedValue = GenericAnchorFunction<<Percentage as ToAnimatedValue>::AnimatedValue, <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<Percentage, LengthPercentage> ToAnimatedZero for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToAnimatedZero, 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<Percentage, LengthPercentage> ToComputedValue for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToComputedValue, LengthPercentage: ToComputedValue,

Source§

type ComputedValue = GenericAnchorFunction<<Percentage as ToComputedValue>::ComputedValue, <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<Percentage, LengthPercentage> ToCss for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToCss, 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<Percentage, LengthPercentage> ToResolvedValue for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToResolvedValue, LengthPercentage: ToResolvedValue,

Source§

type ResolvedValue = GenericAnchorFunction<<Percentage as ToResolvedValue>::ResolvedValue, <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<Percentage, LengthPercentage> ToShmem for GenericAnchorFunction<Percentage, LengthPercentage>
where Percentage: ToShmem, 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<Percentage, LengthPercentage> StructuralPartialEq for GenericAnchorFunction<Percentage, LengthPercentage>