[−][src]Struct alacritty::event::ActionContext
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 WindowChangesTrait Implementations
impl<'a, N: Notify + 'a> ActionContext for ActionContext<'a, N>[src]
fn write_to_pty<B: Into<Cow<'static, [u8]>>>(&mut self, val: B)[src]
fn size_info(&self) -> SizeInfo[src]
fn scroll(&mut self, scroll: Scroll)[src]
fn copy_selection(&self, buffer: ClipboardBuffer)[src]
fn selection_is_empty(&self) -> bool[src]
fn clear_selection(&mut self)[src]
fn update_selection(&mut self, point: Point, side: Side)[src]
fn simple_selection(&mut self, point: Point, side: Side)[src]
fn semantic_selection(&mut self, point: Point)[src]
fn line_selection(&mut self, point: Point)[src]
fn mouse_coords(&self) -> Option<Point>[src]
fn mouse_mut(&mut self) -> &mut Mouse[src]
fn mouse(&self) -> &Mouse[src]
fn received_count(&mut self) -> &mut usize[src]
fn suppress_chars(&mut self) -> &mut bool[src]
fn last_modifiers(&mut self) -> &mut ModifiersState[src]
fn hide_window(&mut self)[src]
fn terminal(&self) -> &Term[src]
fn terminal_mut(&mut self) -> &mut Term[src]
fn spawn_new_instance(&mut self)[src]
Auto Trait Implementations
impl<'a, N> Send for ActionContext<'a, N> where
N: Send,
N: Send,
impl<'a, N> Sync for ActionContext<'a, N> where
N: Sync,
N: Sync,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> SetParameter for T[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>, [src]
T: Parameter<Self>,
Sets value as a parameter of self.