Struct style::values::generics::NonNegative
source · #[repr(transparent)]pub struct NonNegative<T>(pub T);
Expand description
A wrapper of Non-negative values.
Tuple Fields§
§0: T
Implementations§
source§impl NonNegative<LengthPercentage>
impl NonNegative<LengthPercentage>
sourcepub fn is_definitely_zero(&self) -> bool
pub fn is_definitely_zero(&self) -> bool
Returns true if the computed value is absolute 0 or 0%.
sourcepub fn to_used_value(&self, containing_length: Au) -> Au
pub fn to_used_value(&self, containing_length: Au) -> Au
Returns the used value.
source§impl NonNegative<Percentage>
impl NonNegative<Percentage>
source§impl NonNegative<NumberOrPercentage>
impl NonNegative<NumberOrPercentage>
sourcepub fn hundred_percent() -> Self
pub fn hundred_percent() -> Self
Returns the 100%
value.
source§impl NonNegative<Length>
impl NonNegative<Length>
sourcepub fn parse_quirky<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
allow_quirks: AllowQuirks,
) -> Result<Self, ParseError<'i>>
pub fn parse_quirky<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<Self, ParseError<'i>>
Parses a non-negative length, optionally with quirks.
source§impl NonNegative<LengthPercentage>
impl NonNegative<LengthPercentage>
sourcepub fn zero_percent() -> Self
pub fn zero_percent() -> Self
Returns a 0%
value.
sourcepub fn parse_quirky<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
allow_quirks: AllowQuirks,
) -> Result<Self, ParseError<'i>>
pub fn parse_quirky<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<Self, ParseError<'i>>
Parses a length or a percentage, allowing the unitless length quirk. https://quirks.spec.whatwg.org/#the-unitless-length-quirk
source§impl NonNegative<Percentage>
impl NonNegative<Percentage>
sourcepub fn compute(&self) -> ComputedPercentage
pub fn compute(&self) -> ComputedPercentage
Convert to ComputedPercentage, for FontFaceRule size-adjust getter.
source§impl NonNegative<Number>
impl NonNegative<Number>
source§impl NonNegative<NumberOrPercentage>
impl NonNegative<NumberOrPercentage>
sourcepub fn hundred_percent() -> Self
pub fn hundred_percent() -> Self
Returns the 100%
value.
sourcepub fn new_number(n: f32) -> Self
pub fn new_number(n: f32) -> Self
Return a particular number.
Trait Implementations§
source§impl<T: Add<Output = T>> Add for NonNegative<T>
impl<T: Add<Output = T>> Add for NonNegative<T>
source§impl<T> Animate for NonNegative<T>where
T: Animate,
impl<T> Animate for NonNegative<T>where
T: Animate,
source§impl<T: Clone> Clone for NonNegative<T>
impl<T: Clone> Clone for NonNegative<T>
source§fn clone(&self) -> NonNegative<T>
fn clone(&self) -> NonNegative<T>
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<T> ComputeSquaredDistance for NonNegative<T>where
T: ComputeSquaredDistance,
impl<T> ComputeSquaredDistance for NonNegative<T>where
T: ComputeSquaredDistance,
source§fn compute_squared_distance(&self, other: &Self) -> Result<SquaredDistance, ()>
fn compute_squared_distance(&self, other: &Self) -> Result<SquaredDistance, ()>
Computes the squared distance between two animatable values.
source§impl<T: Debug> Debug for NonNegative<T>
impl<T: Debug> Debug for NonNegative<T>
source§impl<'de, T> Deserialize<'de> for NonNegative<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for NonNegative<T>where
T: Deserialize<'de>,
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 From<NonNegative<CSSPixelLength>> for Au
impl From<NonNegative<CSSPixelLength>> for Au
source§fn from(non_negative_len: NonNegativeLength) -> Self
fn from(non_negative_len: NonNegativeLength) -> Self
Converts to this type from the input type.
source§impl From<NonNegative<f32>> for CSSFloat
impl From<NonNegative<f32>> for CSSFloat
source§fn from(number: NonNegativeNumber) -> CSSFloat
fn from(number: NonNegativeNumber) -> CSSFloat
Converts to this type from the input type.
source§impl<T: Hash> Hash for NonNegative<T>
impl<T: Hash> Hash for NonNegative<T>
source§impl<T> MallocSizeOf for NonNegative<T>where
T: MallocSizeOf,
impl<T> MallocSizeOf for NonNegative<T>where
T: 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<T: PartialEq> PartialEq for NonNegative<T>
impl<T: PartialEq> PartialEq for NonNegative<T>
source§fn eq(&self, other: &NonNegative<T>) -> bool
fn eq(&self, other: &NonNegative<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T: PartialOrd> PartialOrd for NonNegative<T>
impl<T: PartialOrd> PartialOrd for NonNegative<T>
source§fn partial_cmp(&self, other: &NonNegative<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &NonNegative<T>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<T> Serialize for NonNegative<T>where
T: Serialize,
impl<T> Serialize for NonNegative<T>where
T: Serialize,
source§impl<T> SpecifiedValueInfo for NonNegative<T>where
T: SpecifiedValueInfo,
impl<T> SpecifiedValueInfo for NonNegative<T>where
T: SpecifiedValueInfo,
source§const SUPPORTED_TYPES: u8 = _
const SUPPORTED_TYPES: u8 = _
Supported CssTypes by the given value type. Read more
source§impl<T> ToAnimatedZero for NonNegative<T>where
T: ToAnimatedZero,
impl<T> ToAnimatedZero for NonNegative<T>where
T: ToAnimatedZero,
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<T> ToComputedValue for NonNegative<T>where
T: ToComputedValue,
impl<T> ToComputedValue for NonNegative<T>where
T: ToComputedValue,
§type ComputedValue = NonNegative<<T as ToComputedValue>::ComputedValue>
type ComputedValue = NonNegative<<T as ToComputedValue>::ComputedValue>
The computed value type we’re going to be converted to.
source§fn from_computed_value(from: &Self::ComputedValue) -> Self
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
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<T> ToCss for NonNegative<T>where
T: ToCss,
impl<T> ToCss for NonNegative<T>where
T: ToCss,
source§impl<T> ToResolvedValue for NonNegative<T>where
T: ToResolvedValue,
impl<T> ToResolvedValue for NonNegative<T>where
T: ToResolvedValue,
§type ResolvedValue = NonNegative<<T as ToResolvedValue>::ResolvedValue>
type ResolvedValue = NonNegative<<T as ToResolvedValue>::ResolvedValue>
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.
source§impl<T> ToShmem for NonNegative<T>where
T: ToShmem,
impl<T> ToShmem for NonNegative<T>where
T: ToShmem,
source§impl<T: Zero> Zero for NonNegative<T>
impl<T: Zero> Zero for NonNegative<T>
impl<T: Copy> Copy for NonNegative<T>
impl<T> StructuralPartialEq for NonNegative<T>
Auto Trait Implementations§
impl<T> Freeze for NonNegative<T>where
T: Freeze,
impl<T> RefUnwindSafe for NonNegative<T>where
T: RefUnwindSafe,
impl<T> Send for NonNegative<T>where
T: Send,
impl<T> Sync for NonNegative<T>where
T: Sync,
impl<T> Unpin for NonNegative<T>where
T: Unpin,
impl<T> UnwindSafe for NonNegative<T>where
T: 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> 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