[][src]Struct hexchat::WindowEvent

pub struct WindowEvent(_);

An event corresponding to a window action.

Methods

impl WindowEvent[src]

pub const OPEN_CHANNEL: Self[src]

Fired when a channel context is opened.

pub const CLOSE_CHANNEL: Self[src]

Fired when a channel context is closed.

pub const FOCUS_TAB: Self[src]

Fired when a channel is focused.

pub const FOCUS_WINDOW: Self[src]

Fired when the window is focused, having previously been unfocused.

pub fn get_id(&self) -> &'static str[src]

Gets the ID of this event.

pub fn get_by_id(id: &str) -> Option<Self>[src]

Gets an event by its ID. Returns None if not found.

Trait Implementations

impl Clone for WindowEvent[src]

impl Copy for WindowEvent[src]

impl Debug for WindowEvent[src]

impl Eq for WindowEvent[src]

impl PartialEq<WindowEvent> for WindowEvent[src]

impl StructuralEq for WindowEvent[src]

impl StructuralPartialEq for WindowEvent[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> Erased for T

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