[][src]Struct i3status_rs::blocks::hueshift::Hueshift

pub struct Hueshift {
    id: usize,
    text: TextWidget,
    update_interval: Duration,
    step: u16,
    current_temp: u16,
    max_temp: u16,
    min_temp: u16,
    hue_shift_driver: Box<dyn HueShiftDriver>,
    click_temp: u16,
    scrolling: Scrolling,
}

Fields

id: usizetext: TextWidgetupdate_interval: Durationstep: u16current_temp: u16max_temp: u16min_temp: u16hue_shift_driver: Box<dyn HueShiftDriver>click_temp: u16scrolling: Scrolling

Trait Implementations

impl Block for Hueshift[src]

impl ConfigBlock for Hueshift[src]

type Config = HueshiftConfig

Auto Trait Implementations

impl !RefUnwindSafe for Hueshift[src]

impl !Send for Hueshift[src]

impl !Sync for Hueshift[src]

impl Unpin for Hueshift[src]

impl !UnwindSafe for Hueshift[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, 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.