[][src]Enum macsmc::FanMode

pub enum FanMode {
    Forced,
    Auto,
}

How a fan is being operated.

Variants

Forced

The fan is in manual mode, its speed is a forced setting

Auto

The fan is in automatic mode, its speed is controlled by the OS

Trait Implementations

impl Clone for FanMode[src]

impl Copy for FanMode[src]

impl Debug for FanMode[src]

impl Default for FanMode[src]

impl From<bool> for FanMode[src]

impl PartialEq<FanMode> for FanMode[src]

impl StructuralPartialEq for FanMode[src]

Auto Trait Implementations

impl RefUnwindSafe for FanMode

impl Send for FanMode

impl Sync for FanMode

impl Unpin for FanMode

impl UnwindSafe for FanMode

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