Struct atk_sys::AtkDocumentIface
source · [−]#[repr(C)]pub struct AtkDocumentIface {
pub parent: GTypeInterface,
pub get_document_type: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *const c_char>,
pub get_document: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> gpointer>,
pub get_document_locale: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *const c_char>,
pub get_document_attributes: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *mut AtkAttributeSet>,
pub get_document_attribute_value: Option<unsafe extern "C" fn(_: *mut AtkDocument, _: *const c_char) -> *const c_char>,
pub set_document_attribute: Option<unsafe extern "C" fn(_: *mut AtkDocument, _: *const c_char, _: *const c_char) -> gboolean>,
pub get_current_page_number: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> c_int>,
pub get_page_count: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> c_int>,
}
Fields
parent: GTypeInterface
get_document_type: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *const c_char>
get_document: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> gpointer>
get_document_locale: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *const c_char>
get_document_attributes: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> *mut AtkAttributeSet>
get_document_attribute_value: Option<unsafe extern "C" fn(_: *mut AtkDocument, _: *const c_char) -> *const c_char>
set_document_attribute: Option<unsafe extern "C" fn(_: *mut AtkDocument, _: *const c_char, _: *const c_char) -> gboolean>
get_current_page_number: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> c_int>
get_page_count: Option<unsafe extern "C" fn(_: *mut AtkDocument) -> c_int>
Trait Implementations
sourceimpl Clone for AtkDocumentIface
impl Clone for AtkDocumentIface
sourcefn clone(&self) -> AtkDocumentIface
fn clone(&self) -> AtkDocumentIface
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AtkDocumentIface
impl Debug for AtkDocumentIface
impl Copy for AtkDocumentIface
Auto Trait Implementations
impl RefUnwindSafe for AtkDocumentIface
impl Send for AtkDocumentIface
impl Sync for AtkDocumentIface
impl Unpin for AtkDocumentIface
impl UnwindSafe for AtkDocumentIface
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more