[][src]Struct simply_wayland::wl::core::wl_output_listener

#[repr(C)]
pub struct wl_output_listener {
    pub geometry: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, x: i32, y: i32, physical_width: i32, physical_height: i32, subpixel: i32, make: *const c_char, model: *const c_char, transform: i32)>,
    pub mode: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, flags: u32, width: i32, height: i32, refresh: i32)>,
    pub done: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output)>,
    pub scale: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, factor: i32)>,
}

Fields

geometry: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, x: i32, y: i32, physical_width: i32, physical_height: i32, subpixel: i32, make: *const c_char, model: *const c_char, transform: i32)>mode: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, flags: u32, width: i32, height: i32, refresh: i32)>done: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output)>scale: Option<unsafe extern "C" fn(data: *mut c_void, wl_output: *mut wl_output, factor: i32)>

Trait Implementations

impl Clone for wl_output_listener[src]

impl Copy for wl_output_listener[src]

impl Debug for wl_output_listener[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> 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.