Struct MenuItem

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

A menu item inside a Menu or Submenu and contains only text.

Implementations§

Source§

impl<R: Runtime> MenuItem<R>

Source

pub fn new<M, T, A>( manager: &M, text: T, enabled: bool, accelerator: Option<A>, ) -> Result<Self>
where M: Manager<R>, T: AsRef<str>, A: AsRef<str>,

Create a new 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 with_id<M, I, T, A>( manager: &M, id: I, text: T, enabled: bool, accelerator: Option<A>, ) -> Result<Self>
where M: Manager<R>, I: Into<MenuId>, T: AsRef<str>, A: AsRef<str>,

Create a new menu item with the specified id.

  • 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.

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 is_enabled(&self) -> Result<bool>

Get whether this menu item is enabled or not.

Source

pub fn set_enabled(&self, enabled: bool) -> Result<()>

Enable or disable this menu item.

Source

pub fn set_accelerator<S: AsRef<str>>( &self, accelerator: Option<S>, ) -> Result<()>

Set this menu item accelerator.

Trait Implementations§

Source§

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

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<R: Runtime> IsMenuItem<R> for MenuItem<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 MenuItem<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§

§

impl<R> Freeze for MenuItem<R>

§

impl<R> !RefUnwindSafe for MenuItem<R>

§

impl<R> Send for MenuItem<R>

§

impl<R> Sync for MenuItem<R>

§

impl<R> Unpin for MenuItem<R>

§

impl<R> !UnwindSafe for MenuItem<R>

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> 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