#[repr(C)]pub struct _GParamSpecInt {
pub parent_instance: GParamSpec,
pub minimum: gint,
pub maximum: gint,
pub default_value: gint,
}
Expand description
GParamSpecInt: @parent_instance: private #GParamSpec portion @minimum: minimum value for the property specified @maximum: maximum value for the property specified @default_value: default value for the property specified
A #GParamSpec derived structure that contains the meta data for integer properties.
Fields§
§parent_instance: GParamSpec
§minimum: gint
§maximum: gint
§default_value: gint
Trait Implementations§
Source§impl Clone for _GParamSpecInt
impl Clone for _GParamSpecInt
Source§fn clone(&self) -> _GParamSpecInt
fn clone(&self) -> _GParamSpecInt
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 _GParamSpecInt
impl Debug for _GParamSpecInt
Source§impl PartialEq for _GParamSpecInt
impl PartialEq for _GParamSpecInt
impl Copy for _GParamSpecInt
impl Eq for _GParamSpecInt
impl StructuralPartialEq for _GParamSpecInt
Auto Trait Implementations§
impl Freeze for _GParamSpecInt
impl RefUnwindSafe for _GParamSpecInt
impl !Send for _GParamSpecInt
impl !Sync for _GParamSpecInt
impl Unpin for _GParamSpecInt
impl UnwindSafe for _GParamSpecInt
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