[][src]Struct rust_bitbar::Plugin

pub struct Plugin {
    pub status_bar: StatusBar,
    pub sub_menu: Option<SubMenu>,
}

Example

use rust_bitbar::{Line, Plugin, SubMenu};

let mut pl = Plugin::new();
let mut line = Line::new("first line");
line.set_color("red")
    .set_href("http://google.com");

let mut sub_menu = SubMenu::new();
sub_menu.add_line(line);

let status_line = Line::new("🍺🍺🍺");
pl.set_status_line(status_line).set_sub_menu(sub_menu);

pl.render();

New returns an empty Bitbar menu without any context

Fields

status_bar: StatusBarsub_menu: Option<SubMenu>

Methods

impl Plugin[src]

pub fn new() -> Self[src]

Function to create empty plugin

pub fn set_status_line(&mut self, line: Line) -> &mut Self[src]

pub fn set_sub_menu(&mut self, sub_menu: SubMenu) -> &mut Self[src]

pub fn render(&self)[src]

Trait Implementations

impl ToString for Plugin[src]

impl Default for Plugin[src]

Auto Trait Implementations

impl Send for Plugin

impl Sync for Plugin

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]