Struct xcb::base::Event [] [src]

pub struct Event<T> {
    pub ptr: *mut T,
}

Event wraps a pointer to xcb_*_event_t this pointer will be freed when the Event goes out of scope

Fields

ptr: *mut T

Methods

impl<T> Event<T>
[src]

fn response_type(&self) -> u8

Trait Implementations

impl<T> Drop for Event<T>
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more