[][src]Struct qt_gui::q_context_menu_event::Reason

#[repr(transparent)]pub struct Reason(_);

This enum describes the reason why the event was sent.

C++ enum: QContextMenuEvent::Reason.

C++ documentation:

This enum describes the reason why the event was sent.

Methods

impl Reason[src]

pub fn to_int(&self) -> c_int[src]

impl Reason[src]

pub const Mouse: Reason[src]

The mouse caused the event to be sent. Normally this means the right mouse button was clicked, but this is platform dependent. (C++ enum variant: Mouse = 0)

pub const Keyboard: Reason[src]

The keyboard caused this event to be sent. On Windows, this means the menu button was pressed. (C++ enum variant: Keyboard = 1)

pub const Other: Reason[src]

The event was sent by some other means (i.e. not by the mouse or keyboard). (C++ enum variant: Other = 2)

Trait Implementations

impl Clone for Reason[src]

impl Copy for Reason[src]

impl Debug for Reason[src]

impl Eq for Reason[src]

impl From<Reason> for c_int[src]

impl From<i32> for Reason[src]

impl PartialEq<Reason> for Reason[src]

impl StructuralEq for Reason[src]

impl StructuralPartialEq for Reason[src]

Auto Trait Implementations

impl RefUnwindSafe for Reason

impl Send for Reason

impl Sync for Reason

impl Unpin for Reason

impl UnwindSafe for Reason

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.