#[repr(C)]pub struct _GValueArray {
pub n_values: guint,
pub values: *mut GValue,
pub n_prealloced: guint,
}
Expand description
GValueArray: @n_values: number of values contained in the array @values: array of values
A #GValueArray contains an array of #GValue elements.
Fields§
§n_values: guint
§values: *mut GValue
§n_prealloced: guint
Trait Implementations§
Source§impl Clone for _GValueArray
impl Clone for _GValueArray
Source§fn clone(&self) -> _GValueArray
fn clone(&self) -> _GValueArray
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _GValueArray
impl Debug for _GValueArray
Source§impl PartialEq for _GValueArray
impl PartialEq for _GValueArray
impl Copy for _GValueArray
impl Eq for _GValueArray
impl StructuralPartialEq for _GValueArray
Auto Trait Implementations§
impl Freeze for _GValueArray
impl RefUnwindSafe for _GValueArray
impl !Send for _GValueArray
impl !Sync for _GValueArray
impl Unpin for _GValueArray
impl UnwindSafe for _GValueArray
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