Enum layout_2020::taffy::stylo_taffy::convert::stylo::GenericInset
source · #[repr(C)]pub(crate) enum GenericInset<P, LP> {
LengthPercentage(LP),
Auto,
AnchorFunction(Box<GenericAnchorFunction<P, LP>>),
AnchorSizeFunction(Box<GenericAnchorSizeFunction<LP>>),
}
Expand description
Specified type for inset
properties, which allows
the use of the anchor()
function.
Note(dshin): LengthPercentageOrAuto
is not used here because
having LengthPercentageOrAuto
and AnchorFunction
in the enum
pays the price of the discriminator for LengthPercentage | Auto
as well as LengthPercentageOrAuto | AnchorFunction
. This increases
the size of the style struct, which would not be great.
On the other hand, we trade for code duplication, so… :(
Variants§
LengthPercentage(LP)
A <length-percentage>
value.
Auto
An auto
value.
AnchorFunction(Box<GenericAnchorFunction<P, LP>>)
Inset defined by the anchor element.
AnchorSizeFunction(Box<GenericAnchorSizeFunction<LP>>)
Inset defined by the size of the anchor element.
Implementations§
source§impl<P, LP> GenericInset<P, LP>
impl<P, LP> GenericInset<P, LP>
source§impl GenericInset<Percentage, LengthPercentage>
impl GenericInset<Percentage, LengthPercentage>
sourcepub fn parse_quirky<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
allow_quirks: AllowQuirks,
) -> Result<GenericInset<Percentage, LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>
pub fn parse_quirky<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<GenericInset<Percentage, LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>
Parses an inset type, allowing the unitless length quirk. https://quirks.spec.whatwg.org/#the-unitless-length-quirk
Trait Implementations§
source§impl<P, LP> Animate for GenericInset<P, LP>where
P: Animate,
LP: Animate,
Box<GenericAnchorFunction<P, LP>>: Animate,
Box<GenericAnchorSizeFunction<LP>>: Animate,
impl<P, LP> Animate for GenericInset<P, LP>where
P: Animate,
LP: Animate,
Box<GenericAnchorFunction<P, LP>>: Animate,
Box<GenericAnchorSizeFunction<LP>>: Animate,
source§fn animate(
&self,
other: &GenericInset<P, LP>,
procedure: Procedure,
) -> Result<GenericInset<P, LP>, ()>
fn animate( &self, other: &GenericInset<P, LP>, procedure: Procedure, ) -> Result<GenericInset<P, LP>, ()>
Animate a value towards another one, given an animation procedure.
source§impl<P, LP> Clone for GenericInset<P, LP>
impl<P, LP> Clone for GenericInset<P, LP>
source§fn clone(&self) -> GenericInset<P, LP>
fn clone(&self) -> GenericInset<P, LP>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<P, LP> ComputeSquaredDistance for GenericInset<P, LP>where
P: ComputeSquaredDistance,
LP: ComputeSquaredDistance,
Box<GenericAnchorFunction<P, LP>>: ComputeSquaredDistance,
Box<GenericAnchorSizeFunction<LP>>: ComputeSquaredDistance,
impl<P, LP> ComputeSquaredDistance for GenericInset<P, LP>where
P: ComputeSquaredDistance,
LP: ComputeSquaredDistance,
Box<GenericAnchorFunction<P, LP>>: ComputeSquaredDistance,
Box<GenericAnchorSizeFunction<LP>>: ComputeSquaredDistance,
source§fn compute_squared_distance(
&self,
other: &GenericInset<P, LP>,
) -> Result<SquaredDistance, ()>
fn compute_squared_distance( &self, other: &GenericInset<P, LP>, ) -> Result<SquaredDistance, ()>
Computes the squared distance between two animatable values.
source§impl<P, LP> Debug for GenericInset<P, LP>
impl<P, LP> Debug for GenericInset<P, LP>
source§impl<P, LP> MallocSizeOf for GenericInset<P, LP>where
P: MallocSizeOf,
LP: MallocSizeOf,
impl<P, LP> MallocSizeOf for GenericInset<P, LP>where
P: MallocSizeOf,
LP: MallocSizeOf,
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
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 GenericInset<Percentage, LengthPercentage>
impl Parse for GenericInset<Percentage, LengthPercentage>
source§fn parse<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
) -> Result<GenericInset<Percentage, LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>
fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<GenericInset<Percentage, LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>
Parse a value of this type. Read more
source§impl<P, LP> PartialEq for GenericInset<P, LP>
impl<P, LP> PartialEq for GenericInset<P, LP>
source§impl<P, LP> SpecifiedValueInfo for GenericInset<P, LP>where
LP: SpecifiedValueInfo,
impl<P, LP> SpecifiedValueInfo for GenericInset<P, LP>where
LP: SpecifiedValueInfo,
source§fn collect_completion_keywords(f: &mut dyn FnMut(&[&'static str]))
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§const SUPPORTED_TYPES: u8 = 0u8
const SUPPORTED_TYPES: u8 = 0u8
Supported CssTypes by the given value type. Read more
source§impl<P, LP> ToAnimatedValue for GenericInset<P, LP>where
P: ToAnimatedValue,
LP: ToAnimatedValue,
impl<P, LP> ToAnimatedValue for GenericInset<P, LP>where
P: ToAnimatedValue,
LP: ToAnimatedValue,
source§type AnimatedValue = GenericInset<<P as ToAnimatedValue>::AnimatedValue, <LP as ToAnimatedValue>::AnimatedValue>
type AnimatedValue = GenericInset<<P as ToAnimatedValue>::AnimatedValue, <LP as ToAnimatedValue>::AnimatedValue>
The type of the animated value.
source§fn from_animated_value(
from: <GenericInset<P, LP> as ToAnimatedValue>::AnimatedValue,
) -> GenericInset<P, LP>
fn from_animated_value( from: <GenericInset<P, LP> as ToAnimatedValue>::AnimatedValue, ) -> GenericInset<P, LP>
Converts back an animated value into a computed value.
source§fn to_animated_value(
self,
context: &Context<'_>,
) -> <GenericInset<P, LP> as ToAnimatedValue>::AnimatedValue
fn to_animated_value( self, context: &Context<'_>, ) -> <GenericInset<P, LP> as ToAnimatedValue>::AnimatedValue
Converts this value to an animated value.
source§impl<P, LP> ToAnimatedZero for GenericInset<P, LP>where
P: ToAnimatedZero,
LP: ToAnimatedZero,
impl<P, LP> ToAnimatedZero for GenericInset<P, LP>where
P: ToAnimatedZero,
LP: ToAnimatedZero,
source§fn to_animated_zero(&self) -> Result<GenericInset<P, LP>, ()>
fn to_animated_zero(&self) -> Result<GenericInset<P, LP>, ()>
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<P, LP> ToComputedValue for GenericInset<P, LP>where
P: ToComputedValue,
LP: ToComputedValue,
impl<P, LP> ToComputedValue for GenericInset<P, LP>where
P: ToComputedValue,
LP: ToComputedValue,
source§type ComputedValue = GenericInset<<P as ToComputedValue>::ComputedValue, <LP as ToComputedValue>::ComputedValue>
type ComputedValue = GenericInset<<P as ToComputedValue>::ComputedValue, <LP as ToComputedValue>::ComputedValue>
The computed value type we’re going to be converted to.
source§fn from_computed_value(
from: &<GenericInset<P, LP> as ToComputedValue>::ComputedValue,
) -> GenericInset<P, LP>
fn from_computed_value( from: &<GenericInset<P, LP> as ToComputedValue>::ComputedValue, ) -> GenericInset<P, LP>
Convert a computed value to specified value form. Read more
source§fn to_computed_value(
&self,
context: &Context<'_>,
) -> <GenericInset<P, LP> as ToComputedValue>::ComputedValue
fn to_computed_value( &self, context: &Context<'_>, ) -> <GenericInset<P, LP> as ToComputedValue>::ComputedValue
Convert a specified value to a computed value, using itself and the data
inside the
Context
.source§impl<P, LP> ToCss for GenericInset<P, LP>
impl<P, LP> ToCss for GenericInset<P, LP>
source§impl<P, LP> ToResolvedValue for GenericInset<P, LP>where
P: ToResolvedValue,
LP: ToResolvedValue,
impl<P, LP> ToResolvedValue for GenericInset<P, LP>where
P: ToResolvedValue,
LP: ToResolvedValue,
source§type ResolvedValue = GenericInset<<P as ToResolvedValue>::ResolvedValue, <LP as ToResolvedValue>::ResolvedValue>
type ResolvedValue = GenericInset<<P as ToResolvedValue>::ResolvedValue, <LP as ToResolvedValue>::ResolvedValue>
The resolved value type we’re going to be converted to.
source§fn from_resolved_value(
from: <GenericInset<P, LP> as ToResolvedValue>::ResolvedValue,
) -> GenericInset<P, LP>
fn from_resolved_value( from: <GenericInset<P, LP> as ToResolvedValue>::ResolvedValue, ) -> GenericInset<P, LP>
Convert a resolved value to resolved value form.
source§fn to_resolved_value(
self,
context: &Context<'_>,
) -> <GenericInset<P, LP> as ToResolvedValue>::ResolvedValue
fn to_resolved_value( self, context: &Context<'_>, ) -> <GenericInset<P, LP> as ToResolvedValue>::ResolvedValue
Convert a resolved value to a resolved value.
source§impl<P, LP> ToShmem for GenericInset<P, LP>
impl<P, LP> ToShmem for GenericInset<P, LP>
source§fn to_shmem(
&self,
builder: &mut SharedMemoryBuilder,
) -> Result<ManuallyDrop<GenericInset<P, LP>>, String>
fn to_shmem( &self, builder: &mut SharedMemoryBuilder, ) -> Result<ManuallyDrop<GenericInset<P, LP>>, String>
Clones this value into a form suitable for writing into a
SharedMemoryBuilder. Read more
impl<P, LP> StructuralPartialEq for GenericInset<P, LP>
Auto Trait Implementations§
impl<P, LP> Freeze for GenericInset<P, LP>where
LP: Freeze,
impl<P, LP> RefUnwindSafe for GenericInset<P, LP>where
LP: RefUnwindSafe,
P: RefUnwindSafe,
impl<P, LP> Send for GenericInset<P, LP>
impl<P, LP> Sync for GenericInset<P, LP>
impl<P, LP> Unpin for GenericInset<P, LP>where
LP: Unpin,
impl<P, LP> UnwindSafe for GenericInset<P, LP>where
LP: UnwindSafe,
P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert