Type Alias GParamSpecUInt64

Source
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

Source§

fn clone(&self) -> _GParamSpecUInt64

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _GParamSpecUInt64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for _GParamSpecUInt64

Source§

fn eq(&self, other: &_GParamSpecUInt64) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for _GParamSpecUInt64

Source§

impl Eq for _GParamSpecUInt64

Source§

impl StructuralPartialEq for _GParamSpecUInt64