[][src]Struct geom::Percent

pub struct Percent(f64);

Most of the time, [0, 1]. But some callers may go outside this range.

Implementations

impl Percent[src]

pub fn inner(self) -> f64[src]

pub fn int(x: usize) -> Percent[src]

pub fn of(x: usize, total: usize) -> Percent[src]

Trait Implementations

impl Clone for Percent[src]

impl Copy for Percent[src]

impl Display for Percent[src]

impl PartialEq<Percent> for Percent[src]

impl StructuralPartialEq for Percent[src]

Auto Trait Implementations

impl RefUnwindSafe for Percent[src]

impl Send for Percent[src]

impl Sync for Percent[src]

impl Unpin for Percent[src]

impl UnwindSafe for Percent[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.