[][src]Struct trayicon::MenuBuilder

pub struct MenuBuilder<T> where
    T: PartialEq + Clone
{ /* fields omitted */ }

Implementations

impl<T> MenuBuilder<T> where
    T: PartialEq + Clone
[src]

pub fn new() -> MenuBuilder<T>[src]

pub fn with(self, item: MenuItem<T>) -> Self[src]

pub fn with_separator(self) -> Self[src]

pub fn with_item(self, name: &str, on_click: T) -> Self[src]

pub fn with_checkable_item(
    self,
    name: &str,
    is_checked: bool,
    on_click: T
) -> Self
[src]

pub fn with_child_menu<F>(self, name: &str, f: F) -> Self where
    F: FnOnce(MenuBuilder<T>) -> MenuBuilder<T>, 
[src]

pub fn build(self) -> Result<MenuSys<T>, Error>[src]

Trait Implementations

impl<T: Debug> Debug for MenuBuilder<T> where
    T: PartialEq + Clone
[src]

impl<T: Default> Default for MenuBuilder<T> where
    T: PartialEq + Clone
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for MenuBuilder<T> where
    T: RefUnwindSafe

impl<T> Send for MenuBuilder<T> where
    T: Send

impl<T> Sync for MenuBuilder<T> where
    T: Sync

impl<T> Unpin for MenuBuilder<T> where
    T: Unpin

impl<T> UnwindSafe for MenuBuilder<T> where
    T: UnwindSafe

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.