Struct imgui::MenuItem

source ·
pub struct MenuItem<'ui, Label, Shortcut = &'static str> { /* private fields */ }
Expand description

Builder for a menu item.

Implementations§

source§

impl<'ui, Label: AsRef<str>> MenuItem<'ui, Label>

source

pub fn new(label: Label, ui: &'ui Ui) -> Self

👎Deprecated since 0.9.0: Use ui.menu_item or ui.menu_item_config

Construct a new menu item builder.

source§

impl<'ui, Label: AsRef<str>, Shortcut: AsRef<str>> MenuItem<'ui, Label, Shortcut>

source

pub fn shortcut<Shortcut2: AsRef<str>>( self, shortcut: Shortcut2 ) -> MenuItem<'ui, Label, Shortcut2>

Sets the menu item shortcut.

Shortcuts are displayed for convenience only and are not automatically handled.

source

pub fn selected(self, selected: bool) -> Self

Sets the selected state of the menu item.

Default: false

source

pub fn enabled(self, enabled: bool) -> Self

Enables/disables the menu item.

Default: enabled

source

pub fn build(self) -> bool

Builds the menu item.

Returns true if the menu item is activated.

source

pub fn build_with_ref(self, selected: &mut bool) -> bool

Builds the menu item using a mutable reference to selected state.

Trait Implementations§

source§

impl<'ui, Label: Clone, Shortcut: Clone> Clone for MenuItem<'ui, Label, Shortcut>

source§

fn clone(&self) -> MenuItem<'ui, Label, Shortcut>

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<'ui, Label: Debug, Shortcut: Debug> Debug for MenuItem<'ui, Label, Shortcut>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'ui, Label: Copy, Shortcut: Copy> Copy for MenuItem<'ui, Label, Shortcut>

Auto Trait Implementations§

§

impl<'ui, Label, Shortcut = &'static str> !RefUnwindSafe for MenuItem<'ui, Label, Shortcut>

§

impl<'ui, Label, Shortcut = &'static str> !Send for MenuItem<'ui, Label, Shortcut>

§

impl<'ui, Label, Shortcut = &'static str> !Sync for MenuItem<'ui, Label, Shortcut>

§

impl<'ui, Label, Shortcut> Unpin for MenuItem<'ui, Label, Shortcut>where Label: Unpin, Shortcut: Unpin,

§

impl<'ui, Label, Shortcut = &'static str> !UnwindSafe for MenuItem<'ui, Label, Shortcut>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.