#[repr(C)]pub struct GTypeValueTable {
pub value_init: Option<extern "C" fn(*mut GValue)>,
pub value_free: Option<extern "C" fn(*mut GValue)>,
pub value_copy: Option<extern "C" fn(*const GValue, *mut GValue)>,
pub value_peek_pointer: Option<extern "C" fn(*const GValue) -> gpointer>,
pub collect_format: *const gchar,
pub collect_value: Option<extern "C" fn(*mut GValue, guint, *mut GTypeCValue, guint) -> *mut gchar>,
pub lcopy_format: *const gchar,
pub lcopy_value: Option<extern "C" fn(*const GValue, guint, *mut GTypeCValue, guint) -> *mut gchar>,
}Fields§
§value_init: Option<extern "C" fn(*mut GValue)>§value_free: Option<extern "C" fn(*mut GValue)>§value_copy: Option<extern "C" fn(*const GValue, *mut GValue)>§value_peek_pointer: Option<extern "C" fn(*const GValue) -> gpointer>§collect_format: *const gchar§collect_value: Option<extern "C" fn(*mut GValue, guint, *mut GTypeCValue, guint) -> *mut gchar>§lcopy_format: *const gchar§lcopy_value: Option<extern "C" fn(*const GValue, guint, *mut GTypeCValue, guint) -> *mut gchar>Auto Trait Implementations§
impl Freeze for GTypeValueTable
impl RefUnwindSafe for GTypeValueTable
impl !Send for GTypeValueTable
impl !Sync for GTypeValueTable
impl Unpin for GTypeValueTable
impl UnwindSafe for GTypeValueTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more