[][src]Struct alacritty::event::ActionContext

pub struct ActionContext<'a, N> {
    pub notifier: &'a mut N,
    pub terminal: &'a mut Term,
    pub size_info: &'a mut SizeInfo,
    pub mouse: &'a mut Mouse,
    pub received_count: &'a mut usize,
    pub suppress_chars: &'a mut bool,
    pub last_modifiers: &'a mut ModifiersState,
    pub window_changes: &'a mut WindowChanges,
}

Fields

notifier: &'a mut Nterminal: &'a mut Termsize_info: &'a mut SizeInfomouse: &'a mut Mousereceived_count: &'a mut usizesuppress_chars: &'a mut boollast_modifiers: &'a mut ModifiersStatewindow_changes: &'a mut WindowChanges

Trait Implementations

impl<'a, N: Notify + 'a> ActionContext for ActionContext<'a, N>[src]

Auto Trait Implementations

impl<'a, N> Send for ActionContext<'a, N> where
    N: Send

impl<'a, N> Sync for ActionContext<'a, N> where
    N: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.

impl<T> Erased for T[src]