Skip to main content

PredefinedMenuItem

Struct PredefinedMenuItem 

Source
pub struct PredefinedMenuItem<R: Runtime>(/* private fields */);
Available on desktop only.
Expand description

A predefined (native) menu item which has a predefined behavior by the OS or by this crate.

Implementations§

Source§

impl<R: Runtime> PredefinedMenuItem<R>

Source

pub fn separator<M: Manager<R>>(manager: &M) -> Result<Self>

Separator menu item

Source

pub fn copy<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Copy menu item

Source

pub fn cut<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Cut menu item

Source

pub fn paste<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Paste menu item

Source

pub fn select_all<M: Manager<R>>( manager: &M, text: Option<&str>, ) -> Result<Self>

SelectAll menu item

Source

pub fn undo<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Undo menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn redo<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Redo menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn minimize<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Minimize window menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn maximize<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Maximize window menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn fullscreen<M: Manager<R>>( manager: &M, text: Option<&str>, ) -> Result<Self>

Fullscreen menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn hide<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Hide window menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn hide_others<M: Manager<R>>( manager: &M, text: Option<&str>, ) -> Result<Self>

Hide other windows menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn show_all<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Show all app windows menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn close_window<M: Manager<R>>( manager: &M, text: Option<&str>, ) -> Result<Self>

Close window menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn quit<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Quit app menu item

§Platform-specific:
  • Linux: Unsupported.
Source

pub fn about<M: Manager<R>>( manager: &M, text: Option<&str>, metadata: Option<AboutMetadata<'_>>, ) -> Result<Self>

About app menu item

Source

pub fn services<M: Manager<R>>(manager: &M, text: Option<&str>) -> Result<Self>

Services menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn bring_all_to_front<M: Manager<R>>( manager: &M, text: Option<&str>, ) -> Result<Self>

Bring All to Front menu item

§Platform-specific:
  • Windows / Linux: Unsupported.
Source

pub fn id(&self) -> &MenuId

Returns a unique identifier associated with this menu item.

Source

pub fn text(&self) -> Result<String>

Get the text for this menu item.

Source

pub fn set_text<S: AsRef<str>>(&self, text: S) -> Result<()>

Set the text for this menu item. text could optionally contain an & before a character to assign this character as the mnemonic for this menu item. To display a & without assigning a mnemenonic, use &&.

Source

pub fn app_handle(&self) -> &AppHandle<R>

The application handle associated with this type.

Trait Implementations§

Source§

impl<R: Runtime> Clone for PredefinedMenuItem<R>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<R: Runtime> IsMenuItem<R> for PredefinedMenuItem<R>

Source§

fn kind(&self) -> MenuItemKind<R>

Returns the kind of this menu item.
Source§

fn id(&self) -> &MenuId

Returns a unique identifier associated with this menu.
Source§

impl<R: Runtime> Resource for PredefinedMenuItem<R>

Source§

fn name(&self) -> Cow<'_, str>

Returns a string representation of the resource. The default implementation returns the Rust type name, but specific resource types may override this trait method.
Source§

fn close(self: Arc<Self>)

Resources may implement the close() trait method if they need to do resource specific clean-ups, such as cancelling pending futures, after a resource has been removed from the resource table.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T