[][src]Struct i3status_rs::blocks::xrandr::XrandrConfig

pub struct XrandrConfig {
    pub interval: Duration,
    pub icons: bool,
    pub resolution: bool,
    pub step_width: u32,
}

Fields

interval: Duration

Update interval in seconds

icons: bool

Show icons for brightness and resolution (needs awesome fonts support)

resolution: bool

Shows the screens resolution

step_width: u32

The steps brightness is in/decreased for the selected screen (When greater than 50 it gets limited to 50)

Trait Implementations

impl Clone for XrandrConfig[src]

impl Debug for XrandrConfig[src]

impl Default for XrandrConfig[src]

impl<'de> Deserialize<'de> for XrandrConfig where
    XrandrConfig: Default
[src]

Auto Trait Implementations

impl RefUnwindSafe for XrandrConfig[src]

impl Send for XrandrConfig[src]

impl Sync for XrandrConfig[src]

impl Unpin for XrandrConfig[src]

impl UnwindSafe for XrandrConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.