Enum rsvg::LengthUnit
source · #[non_exhaustive]#[repr(C)]pub enum LengthUnit {
Percent = 0,
Px = 1,
Em = 2,
Ex = 3,
In = 4,
Cm = 5,
Mm = 6,
Pt = 7,
Pc = 8,
Ch = 9,
}
Expand description
Units for length values.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Percent = 0
1.0
means 100%
Px = 1
Pixels, or the CSS default unit
Em = 2
Size of the current font
Ex = 3
x-height of the current font
In = 4
Inches (25.4 mm)
Cm = 5
Centimeters
Mm = 6
Millimeters
Pt = 7
Points (1/72 inch)
Pc = 8
Picas (12 points)
Ch = 9
Advance measure of a ‘0’ character (depends on the text orientation)
Trait Implementations§
source§impl Clone for LengthUnit
impl Clone for LengthUnit
source§fn clone(&self) -> LengthUnit
fn clone(&self) -> LengthUnit
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 LengthUnit
impl Debug for LengthUnit
source§impl Display for LengthUnit
impl Display for LengthUnit
source§impl PartialEq for LengthUnit
impl PartialEq for LengthUnit
source§fn eq(&self, other: &LengthUnit) -> bool
fn eq(&self, other: &LengthUnit) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LengthUnit
impl StructuralPartialEq for LengthUnit
Auto Trait Implementations§
impl RefUnwindSafe for LengthUnit
impl Send for LengthUnit
impl Sync for LengthUnit
impl Unpin for LengthUnit
impl UnwindSafe for LengthUnit
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 more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.