Enum core::ScaledUnit
source · pub enum ScaledUnit {
Point,
Pica,
Inch,
BigPoint,
Centimeter,
Millimeter,
DidotPoint,
Cicero,
ScaledPoint,
}
Expand description
Unit used to define a scaled integer
Defined in TeX.2021.458 and chapter 10 of the TeX book.
Variants§
Implementations§
source§impl ScaledUnit
impl ScaledUnit
sourcepub fn parse(s: &str) -> Option<Self>
pub fn parse(s: &str) -> Option<Self>
Parses a unit from a two character abbreviation.
E.g., "pc"
is parsed to ScaledUnit::Pica
.
These are abreviations are defined in TeX.2021.458 and chapter 10 of the TeX book.
sourcepub fn conversion_fraction(&self) -> (i32, i32)
pub fn conversion_fraction(&self) -> (i32, i32)
Returns the fraction needed to convert to/from this unit to points.
The return value is of the form (n, d).
If a scaled number represents _x_in these units (e.g. y ScaledUnit::Pica
),
then it is y=nx/d points.
Defined in TeX.2021.458.
Trait Implementations§
source§impl Clone for ScaledUnit
impl Clone for ScaledUnit
source§fn clone(&self) -> ScaledUnit
fn clone(&self) -> ScaledUnit
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 ScaledUnit
impl Debug for ScaledUnit
source§impl PartialEq for ScaledUnit
impl PartialEq for ScaledUnit
impl Copy for ScaledUnit
impl Eq for ScaledUnit
impl StructuralPartialEq for ScaledUnit
Auto Trait Implementations§
impl Freeze for ScaledUnit
impl RefUnwindSafe for ScaledUnit
impl Send for ScaledUnit
impl Sync for ScaledUnit
impl Unpin for ScaledUnit
impl UnwindSafe for ScaledUnit
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)