[][src]Struct libmedium::units::Pwm

pub struct Pwm(_);

Struct that represents a pwm value between 0 and 255.

Implementations

impl Pwm[src]

pub fn from_u8(u8: u8) -> Self[src]

Construct a new Pwm struct from a pwm value between 0 and 255.

pub fn as_u8(self) -> u8[src]

Returns this struct's pwm value between 0 and 255.

pub fn from_percent(percent: f64) -> Self[src]

Construct a new Pwm struct from a pwm value in percent.

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

Returns this struct's pwm value in percent.

Trait Implementations

impl Clone for Pwm[src]

impl Copy for Pwm[src]

impl Debug for Pwm[src]

impl Display for Pwm[src]

impl Eq for Pwm[src]

impl Hash for Pwm[src]

impl Ord for Pwm[src]

impl PartialEq<Pwm> for Pwm[src]

impl PartialOrd<Pwm> for Pwm[src]

impl Raw for Pwm[src]

impl StructuralEq for Pwm[src]

impl StructuralPartialEq for Pwm[src]

Auto Trait Implementations

impl RefUnwindSafe for Pwm

impl Send for Pwm

impl Sync for Pwm

impl Unpin for Pwm

impl UnwindSafe for Pwm

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> 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.