[][src]Struct sourceview4_sys::GtkSourceUndoManagerIface

#[repr(C)]pub struct GtkSourceUndoManagerIface {
    pub parent: GTypeInterface,
    pub can_undo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager) -> gboolean>,
    pub can_redo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager) -> gboolean>,
    pub undo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
    pub redo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
    pub begin_not_undoable_action: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
    pub end_not_undoable_action: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
    pub can_undo_changed: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
    pub can_redo_changed: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>,
}

Fields

parent: GTypeInterfacecan_undo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager) -> gboolean>can_redo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager) -> gboolean>undo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>redo: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>begin_not_undoable_action: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>end_not_undoable_action: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>can_undo_changed: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>can_redo_changed: Option<unsafe extern "C" fn(_: *mut GtkSourceUndoManager)>

Trait Implementations

impl Clone for GtkSourceUndoManagerIface[src]

impl Copy for GtkSourceUndoManagerIface[src]

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