[][src]Struct atk_sys::AtkEditableTextIface

#[repr(C)]pub struct AtkEditableTextIface {
    pub parent_interface: GTypeInterface,
    pub set_run_attributes: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *mut AtkAttributeSet, _: c_int, _: c_int) -> gboolean>,
    pub set_text_contents: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *const c_char)>,
    pub insert_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *const c_char, _: c_int, _: *mut c_int)>,
    pub copy_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>,
    pub cut_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>,
    pub delete_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>,
    pub paste_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int)>,
}

Fields

parent_interface: GTypeInterfaceset_run_attributes: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *mut AtkAttributeSet, _: c_int, _: c_int) -> gboolean>set_text_contents: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *const c_char)>insert_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: *const c_char, _: c_int, _: *mut c_int)>copy_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>cut_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>delete_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int, _: c_int)>paste_text: Option<unsafe extern "C" fn(_: *mut AtkEditableText, _: c_int)>

Trait Implementations

impl Clone for AtkEditableTextIface[src]

impl Copy for AtkEditableTextIface[src]

impl Debug for AtkEditableTextIface[src]

Auto Trait Implementations

impl RefUnwindSafe for AtkEditableTextIface

impl Send for AtkEditableTextIface

impl Sync for AtkEditableTextIface

impl Unpin for AtkEditableTextIface

impl UnwindSafe for AtkEditableTextIface

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.