pub type GParamSpecUInt64 = _GParamSpecUInt64;
Expand description
GParamSpecUInt64: @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 unsigned 64bit integer properties.
Aliased Type§
#[repr(C)]pub struct GParamSpecUInt64 {
pub parent_instance: _GParamSpec,
pub minimum: u64,
pub maximum: u64,
pub default_value: u64,
}
Fields§
§parent_instance: _GParamSpec
§minimum: u64
§maximum: u64
§default_value: u64
Trait Implementations
Source§impl Clone for _GParamSpecUInt64
impl Clone for _GParamSpecUInt64
Source§fn clone(&self) -> _GParamSpecUInt64
fn clone(&self) -> _GParamSpecUInt64
Returns a duplicate 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 more