pub enum DimensionPercentage<D> {
Dimension(D),
Percentage(Percentage),
Calc(Box<Calc<DimensionPercentage<D>>>),
}
Expand description
A generic type that allows any kind of dimension and percentage to be
used standalone or mixed within a calc()
expression.
Variants§
Dimension(D)
An explicit dimension value.
Percentage(Percentage)
A percentage.
Calc(Box<Calc<DimensionPercentage<D>>>)
A calc()
expression.
Implementations§
Source§impl DimensionPercentage<LengthValue>
impl DimensionPercentage<LengthValue>
Sourcepub fn px(val: CSSNumber) -> LengthPercentage
pub fn px(val: CSSNumber) -> LengthPercentage
Constructs a LengthPercentage
with the given pixel value.
Trait Implementations§
Source§impl<D: TryAdd<D> + Clone + Zero + TrySign + Debug> Add for DimensionPercentage<D>
impl<D: TryAdd<D> + Clone + Zero + TrySign + Debug> Add for DimensionPercentage<D>
Source§type Output = DimensionPercentage<D>
type Output = DimensionPercentage<D>
The resulting type after applying the
+
operator.Source§fn add(self, other: DimensionPercentage<D>) -> DimensionPercentage<D>
fn add(self, other: DimensionPercentage<D>) -> DimensionPercentage<D>
Performs the
+
operation. Read moreSource§impl<D: Clone> Clone for DimensionPercentage<D>
impl<D: Clone> Clone for DimensionPercentage<D>
Source§fn clone(&self) -> DimensionPercentage<D>
fn clone(&self) -> DimensionPercentage<D>
Returns a duplicate 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<D: Debug> Debug for DimensionPercentage<D>
impl<D: Debug> Debug for DimensionPercentage<D>
Source§impl<'de, D> Deserialize<'de> for DimensionPercentage<D>where
D: Deserialize<'de>,
impl<'de, D> Deserialize<'de> for DimensionPercentage<D>where
D: 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<D> From<Calc<DimensionPercentage<D>>> for DimensionPercentage<D>
impl<D> From<Calc<DimensionPercentage<D>>> for DimensionPercentage<D>
Source§fn from(calc: Calc<DimensionPercentage<D>>) -> DimensionPercentage<D>
fn from(calc: Calc<DimensionPercentage<D>>) -> DimensionPercentage<D>
Converts to this type from the input type.
Source§impl<D> Into<Calc<DimensionPercentage<D>>> for DimensionPercentage<D>
impl<D> Into<Calc<DimensionPercentage<D>>> for DimensionPercentage<D>
Source§fn into(self) -> Calc<DimensionPercentage<D>>
fn into(self) -> Calc<DimensionPercentage<D>>
Converts this type into the (usually inferred) input type.
Source§impl Into<DimensionPercentage<LengthValue>> for HorizontalPositionKeyword
impl Into<DimensionPercentage<LengthValue>> for HorizontalPositionKeyword
Source§fn into(self) -> LengthPercentage
fn into(self) -> LengthPercentage
Converts this type into the (usually inferred) input type.
Source§impl Into<DimensionPercentage<LengthValue>> for VerticalPositionKeyword
impl Into<DimensionPercentage<LengthValue>> for VerticalPositionKeyword
Source§fn into(self) -> LengthPercentage
fn into(self) -> LengthPercentage
Converts this type into the (usually inferred) input type.
Source§impl<'any, D> IntoOwned<'any> for DimensionPercentage<D>where
D: IntoOwned<'any>,
impl<'any, D> IntoOwned<'any> for DimensionPercentage<D>where
D: IntoOwned<'any>,
Source§fn into_owned(self) -> Self::Owned
fn into_owned(self) -> Self::Owned
Consumes the value and returns an owned clone.
Source§impl<D: JsonSchema> JsonSchema for DimensionPercentage<D>
impl<D: JsonSchema> JsonSchema for DimensionPercentage<D>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl<D: Mul<CSSNumber, Output = D>> Mul<f32> for DimensionPercentage<D>
impl<D: Mul<CSSNumber, Output = D>> Mul<f32> for DimensionPercentage<D>
Source§type Output = DimensionPercentage<D>
type Output = DimensionPercentage<D>
The resulting type after applying the
*
operator.Source§impl<'i, D: Parse<'i> + Mul<CSSNumber, Output = D> + TryAdd<D> + Clone + TryOp + TryMap + Zero + TrySign + TryFrom<Angle> + PartialOrd<D> + Debug> Parse<'i> for DimensionPercentage<D>
impl<'i, D: Parse<'i> + Mul<CSSNumber, Output = D> + TryAdd<D> + Clone + TryOp + TryMap + Zero + TrySign + TryFrom<Angle> + PartialOrd<D> + Debug> Parse<'i> for DimensionPercentage<D>
Source§fn parse<'t>(
input: &mut Parser<'i, 't>,
) -> Result<Self, ParseError<'i, ParserError<'i>>>
fn parse<'t>( input: &mut Parser<'i, 't>, ) -> Result<Self, ParseError<'i, ParserError<'i>>>
Parse a value of this type using an existing parser.
Source§fn parse_string(input: &'i str) -> Result<Self, ParseError<'i, ParserError<'i>>>
fn parse_string(input: &'i str) -> Result<Self, ParseError<'i, ParserError<'i>>>
Parse a value from a string. Read more
Source§impl<D: PartialEq> PartialEq for DimensionPercentage<D>
impl<D: PartialEq> PartialEq for DimensionPercentage<D>
Source§impl<D: PartialOrd<D>> PartialOrd for DimensionPercentage<D>
impl<D: PartialOrd<D>> PartialOrd for DimensionPercentage<D>
Source§impl<D> Serialize for DimensionPercentage<D>where
D: Serialize,
impl<D> Serialize for DimensionPercentage<D>where
D: Serialize,
Source§impl<D: ToCss + Mul<CSSNumber, Output = D> + TrySign + Clone + Debug> ToCss for DimensionPercentage<D>
impl<D: ToCss + Mul<CSSNumber, Output = D> + TrySign + Clone + Debug> ToCss for DimensionPercentage<D>
Source§fn to_css<W>(
&self,
dest: &mut Printer<'_, '_, '_, W>,
) -> Result<(), PrinterError>where
W: Write,
fn to_css<W>(
&self,
dest: &mut Printer<'_, '_, '_, W>,
) -> Result<(), PrinterError>where
W: Write,
Serialize
self
in CSS syntax, writing to dest
.Source§fn to_css_string(
&self,
options: PrinterOptions<'_>,
) -> Result<String, PrinterError>
fn to_css_string( &self, options: PrinterOptions<'_>, ) -> Result<String, PrinterError>
Serialize
self
in CSS syntax and return a string. Read moreSource§impl<D: TryMap> TryMap for DimensionPercentage<D>
impl<D: TryMap> TryMap for DimensionPercentage<D>
Source§impl<D: TryOp> TryOp for DimensionPercentage<D>
impl<D: TryOp> TryOp for DimensionPercentage<D>
Source§impl<D: TrySign> TrySign for DimensionPercentage<D>
impl<D: TrySign> TrySign for DimensionPercentage<D>
Source§fn is_sign_positive(&self) -> bool
fn is_sign_positive(&self) -> bool
Returns whether the value is positive. If not possible, returns false.
Source§fn is_sign_negative(&self) -> bool
fn is_sign_negative(&self) -> bool
Returns whether the value is negative. If not possible, returns false.
Source§impl<'i, D, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for DimensionPercentage<D>where
D: Visit<'i, __T, __V>,
impl<'i, D, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for DimensionPercentage<D>where
D: Visit<'i, __T, __V>,
Source§const CHILD_TYPES: VisitTypes
const CHILD_TYPES: VisitTypes
Available on crate feature
visitor
only.The types of values contained within this value and its children.
This is used to skip branches that don’t have any values requested
by the Visitor.
Source§impl<D: Zero> Zero for DimensionPercentage<D>
impl<D: Zero> Zero for DimensionPercentage<D>
impl<D> StructuralPartialEq for DimensionPercentage<D>
Auto Trait Implementations§
impl<D> Freeze for DimensionPercentage<D>where
D: Freeze,
impl<D> RefUnwindSafe for DimensionPercentage<D>where
D: RefUnwindSafe,
impl<D> Send for DimensionPercentage<D>where
D: Send,
impl<D> Sync for DimensionPercentage<D>where
D: Sync,
impl<D> Unpin for DimensionPercentage<D>where
D: Unpin,
impl<D> UnwindSafe for DimensionPercentage<D>where
D: UnwindSafe,
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
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<'i, T> ParseWithOptions<'i> for Twhere
T: Parse<'i>,
impl<'i, T> ParseWithOptions<'i> for Twhere
T: Parse<'i>,
Source§fn parse_with_options<'t>(
input: &mut Parser<'i, 't>,
_options: &ParserOptions<'_, '_>,
) -> Result<T, ParseError<'i, ParserError<'i>>>
fn parse_with_options<'t>( input: &mut Parser<'i, 't>, _options: &ParserOptions<'_, '_>, ) -> Result<T, ParseError<'i, ParserError<'i>>>
Parse a value of this type with the given options.
Source§fn parse_string_with_options(
input: &'i str,
options: ParserOptions<'_, 'i>,
) -> Result<Self, ParseError<'i, ParserError<'i>>>
fn parse_string_with_options( input: &'i str, options: ParserOptions<'_, 'i>, ) -> Result<Self, ParseError<'i, ParserError<'i>>>
Parse a value from a string with the given options.