[][src]Struct i3status_rs::blocks::pacman::Pacman

pub struct Pacman {
    id: usize,
    output: TextWidget,
    update_interval: Duration,
    format: FormatTemplate,
    format_singular: FormatTemplate,
    format_up_to_date: FormatTemplate,
    warning_updates_regex: Option<Regex>,
    critical_updates_regex: Option<Regex>,
    watched: Watched,
    uptodate: bool,
    hide_when_uptodate: bool,
}

Fields

id: usizeoutput: TextWidgetupdate_interval: Durationformat: FormatTemplateformat_singular: FormatTemplateformat_up_to_date: FormatTemplatewarning_updates_regex: Option<Regex>critical_updates_regex: Option<Regex>watched: Watcheduptodate: boolhide_when_uptodate: bool

Trait Implementations

impl Block for Pacman[src]

impl ConfigBlock for Pacman[src]

type Config = PacmanConfig

Auto Trait Implementations

impl !RefUnwindSafe for Pacman[src]

impl !Send for Pacman[src]

impl !Sync for Pacman[src]

impl Unpin for Pacman[src]

impl UnwindSafe for Pacman[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.