pub struct TrayIconBuilder { /* private fields */ }
Expand description
TrayIcon
builder struct and associated methods.
Implementations§
Source§impl TrayIconBuilder
impl TrayIconBuilder
Sourcepub fn new() -> TrayIconBuilder
pub fn new() -> TrayIconBuilder
Creates a new TrayIconBuilder
with default TrayIconAttributes
.
See TrayIcon::new
for more info.
Sourcepub fn with_id<I>(self, id: I) -> TrayIconBuilderwhere
I: Into<TrayIconId>,
pub fn with_id<I>(self, id: I) -> TrayIconBuilderwhere
I: Into<TrayIconId>,
Sets the unique id to build the tray icon with.
Set the a menu for this tray icon.
§Platform-specific:
- Linux: once a menu is set, it cannot be removed or replaced but you can change its content.
Sourcepub fn with_icon(self, icon: Icon) -> TrayIconBuilder
pub fn with_icon(self, icon: Icon) -> TrayIconBuilder
Sourcepub fn with_tooltip<S>(self, s: S) -> TrayIconBuilder
pub fn with_tooltip<S>(self, s: S) -> TrayIconBuilder
Sourcepub fn with_title<S>(self, title: S) -> TrayIconBuilder
pub fn with_title<S>(self, title: S) -> TrayIconBuilder
Set the tray icon title.
§Platform-specific
- Linux: The title will not be shown unless there is an icon as well. The title is useful for numerical and other frequently updated information. In general, it shouldn’t be shown unless a user requests it as it can take up a significant amount of space on the user’s panel. This may not be shown in all visualizations.
- Windows: Unsupported.
Sourcepub fn with_temp_dir_path<P>(self, s: P) -> TrayIconBuilder
pub fn with_temp_dir_path<P>(self, s: P) -> TrayIconBuilder
Set tray icon temp dir path. Linux only.
On Linux, we need to write the icon to the disk and usually it will
be $XDG_RUNTIME_DIR/tray-icon
or $TEMP/tray-icon
.
Sourcepub fn with_icon_as_template(self, is_template: bool) -> TrayIconBuilder
pub fn with_icon_as_template(self, is_template: bool) -> TrayIconBuilder
Use the icon as a template. macOS only.
Whether to show the tray menu on left click or not, default is true
. macOS only.
Sourcepub fn id(&self) -> &TrayIconId
pub fn id(&self) -> &TrayIconId
Access the unique id that will be assigned to the tray icon this builder will create.
Trait Implementations§
Source§impl Default for TrayIconBuilder
impl Default for TrayIconBuilder
Source§fn default() -> TrayIconBuilder
fn default() -> TrayIconBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TrayIconBuilder
impl !RefUnwindSafe for TrayIconBuilder
impl !Send for TrayIconBuilder
impl !Sync for TrayIconBuilder
impl Unpin for TrayIconBuilder
impl !UnwindSafe for TrayIconBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
Source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.