[][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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<WindowEvent> for WindowEvent[src]

impl Eq for WindowEvent[src]

impl Copy for WindowEvent[src]

impl Debug for WindowEvent[src]

Auto Trait Implementations

impl Send for WindowEvent

impl Sync for WindowEvent

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T