Struct layout_2020::taffy::stylo_taffy::convert::stylo::NonNegative

source ·
#[repr(transparent)]
pub(crate) struct NonNegative<T>(pub T);
Expand description

A wrapper of Non-negative values.

Tuple Fields§

§0: T

Implementations§

source§

impl NonNegative<CSSPixelLength>

source

pub fn new(px: f32) -> NonNegative<CSSPixelLength>

Create a NonNegativeLength.

source

pub fn px(&self) -> f32

Return the pixel value of |NonNegativeLength|.

source

pub fn clamp(self) -> NonNegative<CSSPixelLength>

Ensures it is non negative

source§

impl NonNegative<LengthPercentage>

source

pub fn is_definitely_zero(&self) -> bool

Returns true if the computed value is absolute 0 or 0%.

source

pub fn to_used_value(&self, containing_length: Au) -> Au

Returns the used value.

source

pub fn maybe_to_used_value(&self, containing_length: Option<Au>) -> Option<Au>

Convert the computed value into used value.

source§

impl NonNegative<Percentage>

source§

impl NonNegative<NumberOrPercentage>

source

pub fn hundred_percent() -> NonNegative<NumberOrPercentage>

Returns the 100% value.

source§

impl NonNegative<Length>

source

pub fn from_px(px_value: f32) -> NonNegative<Length>

Get an absolute length from a px value.

source

pub fn parse_quirky<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<NonNegative<Length>, ParseError<'i, StyleParseErrorKind<'i>>>

Parses a non-negative length, optionally with quirks.

source§

impl NonNegative<LengthPercentage>

source

pub fn zero_percent() -> NonNegative<LengthPercentage>

Returns a 0% value.

source

pub fn parse_quirky<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<NonNegative<LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>

Parses a length or a percentage, allowing the unitless length quirk. https://quirks.spec.whatwg.org/#the-unitless-length-quirk

source

pub fn parse_non_negative_with_anchor_size<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, allow_quirks: AllowQuirks, ) -> Result<NonNegative<LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>

Parses a length or a percentage, allowing the unitless length quirk, as well as allowing anchor-size().

source§

impl NonNegative<Percentage>

source

pub fn compute(&self) -> Percentage

Convert to ComputedPercentage, for FontFaceRule size-adjust getter.

source§

impl NonNegative<Number>

source

pub fn new(val: f32) -> NonNegative<Number>

Returns a new non-negative number with the value val.

source

pub fn get(&self) -> f32

Returns the numeric value.

source§

impl NonNegative<NumberOrPercentage>

source

pub fn hundred_percent() -> NonNegative<NumberOrPercentage>

Returns the 100% value.

source

pub fn new_number(n: f32) -> NonNegative<NumberOrPercentage>

Return a particular number.

Trait Implementations§

source§

impl<T> Add for NonNegative<T>
where T: Add<Output = T>,

source§

type Output = NonNegative<T>

The resulting type after applying the + operator.
source§

fn add(self, other: NonNegative<T>) -> NonNegative<T>

Performs the + operation. Read more
source§

impl<T> Animate for NonNegative<T>
where T: Animate,

source§

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

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

impl<T> Clone for NonNegative<T>
where T: Clone,

source§

fn clone(&self) -> NonNegative<T>

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<T> ComputeSquaredDistance for NonNegative<T>

source§

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

Computes the squared distance between two animatable values.
source§

impl<T> Debug for NonNegative<T>
where T: Debug,

source§

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

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

impl<'de, T> Deserialize<'de> for NonNegative<T>
where T: Deserialize<'de>,

source§

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

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

impl From<Au> for NonNegative<CSSPixelLength>

source§

fn from(au: Au) -> NonNegative<CSSPixelLength>

Converts to this type from the input type.
source§

impl From<CSSPixelLength> for NonNegative<CSSPixelLength>

source§

fn from(len: CSSPixelLength) -> NonNegative<CSSPixelLength>

Converts to this type from the input type.
source§

impl From<Length> for NonNegative<Length>

source§

fn from(len: Length) -> NonNegative<Length>

Converts to this type from the input type.
source§

impl From<NoCalcLength> for NonNegative<Length>

source§

fn from(len: NoCalcLength) -> NonNegative<Length>

Converts to this type from the input type.
source§

impl From<NoCalcLength> for NonNegative<LengthPercentage>

source§

fn from(len: NoCalcLength) -> NonNegative<LengthPercentage>

Converts to this type from the input type.
source§

impl From<f32> for NonNegative<f32>

source§

fn from(number: f32) -> NonNegative<f32>

Converts to this type from the input type.
source§

impl<T> Hash for NonNegative<T>
where T: Hash,

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T> MallocSizeOf for NonNegative<T>
where T: 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 One for NonNegative<Number>

source§

fn one() -> NonNegative<Number>

Reutrns the one value.
source§

fn is_one(&self) -> bool

Returns whether this value is one.
source§

impl One for NonNegative<f32>

source§

fn one() -> NonNegative<f32>

Reutrns the one value.
source§

fn is_one(&self) -> bool

Returns whether this value is one.
source§

impl Parse for NonNegative<Integer>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<Integer>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl Parse for NonNegative<Length>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<Length>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl Parse for NonNegative<LengthPercentage>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<LengthPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl Parse for NonNegative<Number>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<Number>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl Parse for NonNegative<NumberOrPercentage>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<NumberOrPercentage>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl Parse for NonNegative<Percentage>

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<NonNegative<Percentage>, ParseError<'i, StyleParseErrorKind<'i>>>

Parse a value of this type. Read more
source§

impl<T> PartialEq for NonNegative<T>
where T: PartialEq,

source§

fn eq(&self, other: &NonNegative<T>) -> 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<T> PartialOrd for NonNegative<T>
where T: PartialOrd,

source§

fn partial_cmp(&self, other: &NonNegative<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T> Serialize for NonNegative<T>
where T: Serialize,

source§

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

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

impl<T> SpecifiedValueInfo for NonNegative<T>

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 ToAnimatedValue for NonNegative<CSSPixelLength>

source§

type AnimatedValue = CSSPixelLength

The type of the animated value.
source§

fn to_animated_value( self, context: &Context<'_>, ) -> <NonNegative<CSSPixelLength> as ToAnimatedValue>::AnimatedValue

Converts this value to an animated value.
source§

fn from_animated_value( animated: <NonNegative<CSSPixelLength> as ToAnimatedValue>::AnimatedValue, ) -> NonNegative<CSSPixelLength>

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

impl ToAnimatedValue for NonNegative<LengthPercentage>

source§

type AnimatedValue = LengthPercentage

The type of the animated value.
source§

fn to_animated_value( self, context: &Context<'_>, ) -> <NonNegative<LengthPercentage> as ToAnimatedValue>::AnimatedValue

Converts this value to an animated value.
source§

fn from_animated_value( animated: <NonNegative<LengthPercentage> as ToAnimatedValue>::AnimatedValue, ) -> NonNegative<LengthPercentage>

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

impl ToAnimatedValue for NonNegative<NumberOrPercentage>

source§

type AnimatedValue = NumberOrPercentage

The type of the animated value.
source§

fn to_animated_value( self, _: &Context<'_>, ) -> <NonNegative<NumberOrPercentage> as ToAnimatedValue>::AnimatedValue

Converts this value to an animated value.
source§

fn from_animated_value( animated: <NonNegative<NumberOrPercentage> as ToAnimatedValue>::AnimatedValue, ) -> NonNegative<NumberOrPercentage>

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

impl ToAnimatedValue for NonNegative<Percentage>

source§

type AnimatedValue = Percentage

The type of the animated value.
source§

fn to_animated_value( self, _: &Context<'_>, ) -> <NonNegative<Percentage> as ToAnimatedValue>::AnimatedValue

Converts this value to an animated value.
source§

fn from_animated_value( animated: <NonNegative<Percentage> as ToAnimatedValue>::AnimatedValue, ) -> NonNegative<Percentage>

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

impl ToAnimatedValue for NonNegative<f32>

source§

type AnimatedValue = f32

The type of the animated value.
source§

fn to_animated_value( self, _: &Context<'_>, ) -> <NonNegative<f32> as ToAnimatedValue>::AnimatedValue

Converts this value to an animated value.
source§

fn from_animated_value( animated: <NonNegative<f32> as ToAnimatedValue>::AnimatedValue, ) -> NonNegative<f32>

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

impl<T> ToAnimatedZero for NonNegative<T>
where T: ToAnimatedZero,

source§

fn to_animated_zero(&self) -> Result<NonNegative<T>, ()>

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,

source§

type ComputedValue = NonNegative<<T as ToComputedValue>::ComputedValue>

The computed value type we’re going to be converted to.
source§

fn from_computed_value( from: &<NonNegative<T> as ToComputedValue>::ComputedValue, ) -> NonNegative<T>

Convert a computed value to specified value form. Read more
source§

fn to_computed_value( &self, context: &Context<'_>, ) -> <NonNegative<T> as ToComputedValue>::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,

source§

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

source§

type ResolvedValue = NonNegative<<T as ToResolvedValue>::ResolvedValue>

The resolved value type we’re going to be converted to.
source§

fn from_resolved_value( from: <NonNegative<T> as ToResolvedValue>::ResolvedValue, ) -> NonNegative<T>

Convert a resolved value to resolved value form.
source§

fn to_resolved_value( self, context: &Context<'_>, ) -> <NonNegative<T> as ToResolvedValue>::ResolvedValue

Convert a resolved value to a resolved value.
source§

impl<T> ToShmem for NonNegative<T>
where T: ToShmem,

source§

fn to_shmem( &self, builder: &mut SharedMemoryBuilder, ) -> Result<ManuallyDrop<NonNegative<T>>, String>

Clones this value into a form suitable for writing into a SharedMemoryBuilder. Read more
source§

impl<T> Zero for NonNegative<T>
where T: Zero,

source§

fn is_zero(&self) -> bool

Returns whether this value is zero.
source§

fn zero() -> NonNegative<T>

Returns the zero value.
source§

impl<T> Copy for NonNegative<T>
where T: Copy,

source§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> Downcast<T> for T

source§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
source§

impl<T> MaybeBoxed<Box<T>> for T

source§

fn maybe_boxed(self) -> Box<T>

Convert
source§

impl<T> MaybeBoxed<T> for T

source§

fn maybe_boxed(self) -> T

Convert
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,