Struct MenuItem

Source
pub struct MenuItem<'s, S1: IntoCStr, S2: IntoCStr> { /* private fields */ }

Implementations§

Source§

impl<'s, S1: IntoCStr, S2: IntoCStr> MenuItem<'s, S1, S2>

Source

pub fn build(self) -> bool

Source

pub fn shortcut_opt<S3: IntoCStr>( self, shortcut: Option<S3>, ) -> MenuItem<'s, S1, S3>

Source

pub fn shortcut<S3: IntoCStr>(self, shortcut: S3) -> MenuItem<'s, S1, S3>

Source

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

Source

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

Auto Trait Implementations§

§

impl<'s, S1, S2> Freeze for MenuItem<'s, S1, S2>
where <S1 as IntoCStr>::Temp: Freeze, <S2 as IntoCStr>::Temp: Freeze,

§

impl<'s, S1, S2> RefUnwindSafe for MenuItem<'s, S1, S2>

§

impl<'s, S1, S2> !Send for MenuItem<'s, S1, S2>

§

impl<'s, S1, S2> !Sync for MenuItem<'s, S1, S2>

§

impl<'s, S1, S2> Unpin for MenuItem<'s, S1, S2>
where <S1 as IntoCStr>::Temp: Unpin, <S2 as IntoCStr>::Temp: Unpin,

§

impl<'s, S1, S2> UnwindSafe for MenuItem<'s, S1, S2>
where <S1 as IntoCStr>::Temp: UnwindSafe, <S2 as IntoCStr>::Temp: UnwindSafe,

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