[][src]Struct yy_typings::object_yy::MouseButton

pub struct MouseButton {
    pub mb_code: MouseButtonCode,
    pub local: bool,
}

Fields

mb_code: MouseButtonCode

The mouse button code used for this input.

local: bool

Whether the input is a "global" input, or a "local" input. In the Gms2 IDE, these are separated into different categories. "Local" events only file when the object itself is clicked on, while "global" can be fire whenever the input is held at all.

Implementations

impl MouseButton[src]

pub const GLOBAL_OFFSET: usize[src]

The offset for the event_num if this mouse button is a global. We use this number internally for serialization/deserialization.

pub fn event_offset(&self) -> usize[src]

Calculates the event_num offset for this MouseButton, largely for internal use in serialization and deserialization. We make this public as this library attempts to be 100% public.

Trait Implementations

impl Clone for MouseButton[src]

impl Copy for MouseButton[src]

impl Debug for MouseButton[src]

impl Default for MouseButton[src]

fn default() -> Self[src]

Return MouseButton { mb_code: Default::default(), local: Default::default() }

impl Display for MouseButton[src]

impl Eq for MouseButton[src]

impl Hash for MouseButton[src]

impl Ord for MouseButton[src]

impl PartialEq<MouseButton> for MouseButton[src]

impl PartialOrd<MouseButton> for MouseButton[src]

impl StructuralEq for MouseButton[src]

impl StructuralPartialEq for MouseButton[src]

Auto Trait Implementations

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> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,