#[repr(u8)]pub enum CalcLengthPercentageLeaf {
Length(Length),
Percentage(Percentage),
Number(f32),
}
Expand description
The leaves of a <length-percentage>
calc expression.
Variants§
Implementations§
source§impl CalcLengthPercentageLeaf
impl CalcLengthPercentageLeaf
fn is_zero_length(&self) -> bool
Trait Implementations§
source§impl CalcNodeLeaf for CalcLengthPercentageLeaf
impl CalcNodeLeaf for CalcLengthPercentageLeaf
source§fn unitless_value(&self) -> Option<f32>
fn unitless_value(&self) -> Option<f32>
Returns the unitless value of this leaf if one is available.
source§fn new_number(value: f32) -> Self
fn new_number(value: f32) -> Self
Create a new leaf with a number value.
source§fn compare(
&self,
other: &Self,
basis: PositivePercentageBasis,
) -> Option<Ordering>
fn compare( &self, other: &Self, basis: PositivePercentageBasis, ) -> Option<Ordering>
Do a partial comparison of these values.
source§fn try_sum_in_place(&mut self, other: &Self) -> Result<(), ()>
fn try_sum_in_place(&mut self, other: &Self) -> Result<(), ()>
Tries to merge one leaf into another using the sum, that is, perform
x
+ y
.source§fn try_product_in_place(&mut self, other: &mut Self) -> bool
fn try_product_in_place(&mut self, other: &mut Self) -> bool
Try to merge the right leaf into the left by using a multiplication. Return true if the
merge was successful, otherwise false.
source§fn try_op<O>(&self, other: &Self, op: O) -> Result<Self, ()>
fn try_op<O>(&self, other: &Self, op: O) -> Result<Self, ()>
Tries a generic arithmetic operation.
source§fn map(&mut self, op: impl FnMut(f32) -> f32) -> Result<(), ()>
fn map(&mut self, op: impl FnMut(f32) -> f32) -> Result<(), ()>
Map the value of this node with the given operation.
source§fn is_same_unit_as(&self, other: &Self) -> bool
fn is_same_unit_as(&self, other: &Self) -> bool
Return true if the units of both leaves are equal. (NOTE: Does not take
the values into account)
source§fn gt(&self, other: &Self, basis_positive: PositivePercentageBasis) -> bool
fn gt(&self, other: &Self, basis_positive: PositivePercentageBasis) -> bool
Return whether a leaf is greater than another.
source§fn lt(&self, other: &Self, basis_positive: PositivePercentageBasis) -> bool
fn lt(&self, other: &Self, basis_positive: PositivePercentageBasis) -> bool
Return whether a leaf is less than another.
source§impl Clone for CalcLengthPercentageLeaf
impl Clone for CalcLengthPercentageLeaf
source§fn clone(&self) -> CalcLengthPercentageLeaf
fn clone(&self) -> CalcLengthPercentageLeaf
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 Debug for CalcLengthPercentageLeaf
impl Debug for CalcLengthPercentageLeaf
source§impl<'de> Deserialize<'de> for CalcLengthPercentageLeaf
impl<'de> Deserialize<'de> for CalcLengthPercentageLeaf
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 MallocSizeOf for CalcLengthPercentageLeaf
impl MallocSizeOf for CalcLengthPercentageLeaf
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 PartialEq for CalcLengthPercentageLeaf
impl PartialEq for CalcLengthPercentageLeaf
source§fn eq(&self, other: &CalcLengthPercentageLeaf) -> bool
fn eq(&self, other: &CalcLengthPercentageLeaf) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CalcLengthPercentageLeaf
impl Serialize for CalcLengthPercentageLeaf
source§impl ToAnimatedZero for CalcLengthPercentageLeaf
impl ToAnimatedZero for CalcLengthPercentageLeaf
source§fn to_animated_zero(&self) -> Result<Self, ()>
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 ToCss for CalcLengthPercentageLeaf
impl ToCss for CalcLengthPercentageLeaf
source§impl ToResolvedValue for CalcLengthPercentageLeafwhere
Length: ToResolvedValue<ResolvedValue = Length>,
Percentage: ToResolvedValue<ResolvedValue = Percentage>,
f32: ToResolvedValue<ResolvedValue = f32>,
impl ToResolvedValue for CalcLengthPercentageLeafwhere
Length: ToResolvedValue<ResolvedValue = Length>,
Percentage: ToResolvedValue<ResolvedValue = Percentage>,
f32: ToResolvedValue<ResolvedValue = f32>,
§type ResolvedValue = CalcLengthPercentageLeaf
type ResolvedValue = CalcLengthPercentageLeaf
The resolved value type we’re going to be converted to.
source§fn from_resolved_value(from: Self::ResolvedValue) -> Self
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
fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
Convert a resolved value to a resolved value.
impl StructuralPartialEq for CalcLengthPercentageLeaf
Auto Trait Implementations§
impl Freeze for CalcLengthPercentageLeaf
impl RefUnwindSafe for CalcLengthPercentageLeaf
impl Send for CalcLengthPercentageLeaf
impl Sync for CalcLengthPercentageLeaf
impl Unpin for CalcLengthPercentageLeaf
impl UnwindSafe for CalcLengthPercentageLeaf
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> 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