[][src]Struct atk_sys::AtkSelectionIface

#[repr(C)]pub struct AtkSelectionIface {
    pub parent: GTypeInterface,
    pub add_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>,
    pub clear_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> gboolean>,
    pub ref_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> *mut AtkObject>,
    pub get_selection_count: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> c_int>,
    pub is_child_selected: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>,
    pub remove_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>,
    pub select_all_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> gboolean>,
    pub selection_changed: Option<unsafe extern "C" fn(_: *mut AtkSelection)>,
}

Fields

parent: GTypeInterfaceadd_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>clear_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> gboolean>ref_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> *mut AtkObject>get_selection_count: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> c_int>is_child_selected: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>remove_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection, _: c_int) -> gboolean>select_all_selection: Option<unsafe extern "C" fn(_: *mut AtkSelection) -> gboolean>selection_changed: Option<unsafe extern "C" fn(_: *mut AtkSelection)>

Trait Implementations

impl Clone for AtkSelectionIface[src]

impl Copy for AtkSelectionIface[src]

impl Debug for AtkSelectionIface[src]

Auto Trait Implementations

impl RefUnwindSafe for AtkSelectionIface

impl Send for AtkSelectionIface

impl Sync for AtkSelectionIface

impl Unpin for AtkSelectionIface

impl UnwindSafe for AtkSelectionIface

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.