pub struct ParamSpec { /* private fields */ }
Expand description
GParamSpec
encapsulates the metadata required to specify parameters, such as GObject
properties.
§Parameter names
A property name consists of one or more segments consisting of ASCII letters
and digits, separated by either the -
or _
character. The first
character of a property name must be a letter. These are the same rules as
for signal naming (see [funcObject
]).
When creating and looking up a GParamSpec
, either separator can be
used, but they cannot be mixed. Using -
is considerably more
efficient, and is the ‘canonical form’. Using _
is discouraged.
This is an Abstract Base Class, you cannot instantiate it.
GParamSpec
encapsulates the metadata required to specify parameters, such as GObject
properties.
§Parameter names
A property name consists of one or more segments consisting of ASCII letters
and digits, separated by either the -
or _
character. The first
character of a property name must be a letter. These are the same rules as
for signal naming (see [funcObject
]).
When creating and looking up a GParamSpec
, either separator can be
used, but they cannot be mixed. Using -
is considerably more
efficient, and is the ‘canonical form’. Using _
is discouraged.
This is an Abstract Base Class, you cannot instantiate it.
GLib type: Shared boxed type with reference counted clone semantics.
Implementations§
Source§impl ParamSpec
impl ParamSpec
Sourcepub fn as_ptr(&self) -> *mut GParamSpec
pub fn as_ptr(&self) -> *mut GParamSpec
Return the inner pointer to the underlying C value.
Sourcepub unsafe fn from_glib_ptr_borrow(ptr: &*mut GParamSpec) -> &Self
pub unsafe fn from_glib_ptr_borrow(ptr: &*mut GParamSpec) -> &Self
Borrows the underlying C value.
Source§impl ParamSpec
impl ParamSpec
pub fn downcast<T: ParamSpecType>(self) -> Result<T, ParamSpec>
pub fn downcast_ref<T: ParamSpecType>(&self) -> Option<&T>
pub fn type_(&self) -> Type
pub fn is<T: StaticType>(&self) -> bool
pub fn value_type(&self) -> Type
pub fn value_is_valid(&self, value: &Value) -> bool
v2_74
only.pub fn owner_type(&self) -> Type
pub fn flags(&self) -> ParamFlags
Sourcepub fn default_value(&self) -> &Value
pub fn default_value(&self) -> &Value
Gets the default value of self
as a pointer to a Value
.
The Value
will remain valid for the life of self
.
§Returns
a pointer to a Value
which must not be modified
Gets the default value of self
as a pointer to a Value
.
The Value
will remain valid for the life of self
.
§Returns
a pointer to a Value
which must not be modified
Sourcepub fn name<'a>(&self) -> &'a str
pub fn name<'a>(&self) -> &'a str
Get the name of a ParamSpec
.
The name is always an “interned” string (as per g_intern_string()
).
This allows for pointer-value comparisons.
§Returns
the name of self
.
Get the name of a ParamSpec
.
The name is always an “interned” string (as per g_intern_string()
).
This allows for pointer-value comparisons.
§Returns
the name of self
.
Sourcepub fn name_quark(&self) -> Quark
pub fn name_quark(&self) -> Quark
Sourcepub fn nick(&self) -> &str
pub fn nick(&self) -> &str
Returns the nickname of this ParamSpec
.
If this ParamSpec
does not have a nickname, the nickname of its redirect target is returned if it has one.
Otherwise, self.name()
is returned.
Get the nickname of a ParamSpec
.
§Returns
the nickname of self
.
Get the nickname of a ParamSpec
.
§Returns
the nickname of self
.
Sourcepub fn redirect_target(&self) -> Option<ParamSpec>
pub fn redirect_target(&self) -> Option<ParamSpec>
contains references to other environment variables, they are expanded.
§variable
the environment variable to get
§Returns
the value of the environment variable, or None
if
the environment variable is not found. The returned string
may be overwritten by the next call to g_getenv(), g_setenv()
or g_unsetenv().
If the paramspec redirects operations to another paramspec,
returns that paramspec. Redirect is used typically for
providing a new implementation of a property in a derived
type while preserving all the properties from the parent
type. Redirection is established by creating a property
of type ParamSpecOverride
. See g_object_class_override_property()
for an example of the use of this capability.
§Returns
paramspec to which requests on this
paramspec should be redirected, or None
if none.
Sourcepub fn is_valid_name(name: &str) -> bool
Available on crate feature v2_66
only.
pub fn is_valid_name(name: &str) -> bool
v2_66
only.Validate a property name for a ParamSpec
. This can be useful for
dynamically-generated properties which need to be validated at run-time
before actually trying to create them.
See [canonical parameter names][classObject
parameter
-names]
for details of the rules for valid names.
§name
the canonical name of the property
§Returns
true
if name
is a valid property name, false
otherwise.
Validate a property name for a ParamSpec
. This can be useful for
dynamically-generated properties which need to be validated at run-time
before actually trying to create them.
See [canonical parameter names][classObject
parameter
-names]
for details of the rules for valid names.
§name
the canonical name of the property
§Returns
Trait Implementations§
Source§impl AsRef<ParamSpec> for ParamSpecBoolean
impl AsRef<ParamSpec> for ParamSpecBoolean
Source§impl AsRef<ParamSpec> for ParamSpecBoxed
impl AsRef<ParamSpec> for ParamSpecBoxed
Source§impl AsRef<ParamSpec> for ParamSpecChar
impl AsRef<ParamSpec> for ParamSpecChar
Source§impl AsRef<ParamSpec> for ParamSpecDouble
impl AsRef<ParamSpec> for ParamSpecDouble
Source§impl AsRef<ParamSpec> for ParamSpecEnum
impl AsRef<ParamSpec> for ParamSpecEnum
Source§impl AsRef<ParamSpec> for ParamSpecFlags
impl AsRef<ParamSpec> for ParamSpecFlags
Source§impl AsRef<ParamSpec> for ParamSpecFloat
impl AsRef<ParamSpec> for ParamSpecFloat
Source§impl AsRef<ParamSpec> for ParamSpecGType
impl AsRef<ParamSpec> for ParamSpecGType
Source§impl AsRef<ParamSpec> for ParamSpecInt
impl AsRef<ParamSpec> for ParamSpecInt
Source§impl AsRef<ParamSpec> for ParamSpecInt64
impl AsRef<ParamSpec> for ParamSpecInt64
Source§impl AsRef<ParamSpec> for ParamSpecLong
impl AsRef<ParamSpec> for ParamSpecLong
Source§impl AsRef<ParamSpec> for ParamSpecObject
impl AsRef<ParamSpec> for ParamSpecObject
Source§impl AsRef<ParamSpec> for ParamSpecOverride
impl AsRef<ParamSpec> for ParamSpecOverride
Source§impl AsRef<ParamSpec> for ParamSpecParam
impl AsRef<ParamSpec> for ParamSpecParam
Source§impl AsRef<ParamSpec> for ParamSpecPointer
impl AsRef<ParamSpec> for ParamSpecPointer
Source§impl AsRef<ParamSpec> for ParamSpecString
impl AsRef<ParamSpec> for ParamSpecString
Source§impl AsRef<ParamSpec> for ParamSpecUChar
impl AsRef<ParamSpec> for ParamSpecUChar
Source§impl AsRef<ParamSpec> for ParamSpecUInt
impl AsRef<ParamSpec> for ParamSpecUInt
Source§impl AsRef<ParamSpec> for ParamSpecUInt64
impl AsRef<ParamSpec> for ParamSpecUInt64
Source§impl AsRef<ParamSpec> for ParamSpecULong
impl AsRef<ParamSpec> for ParamSpecULong
Source§impl AsRef<ParamSpec> for ParamSpecUnichar
impl AsRef<ParamSpec> for ParamSpecUnichar
Source§impl AsRef<ParamSpec> for ParamSpecValueArray
impl AsRef<ParamSpec> for ParamSpecValueArray
Source§impl AsRef<ParamSpec> for ParamSpecVariant
impl AsRef<ParamSpec> for ParamSpecVariant
Source§impl Ord for ParamSpec
impl Ord for ParamSpec
Source§impl PartialOrd for ParamSpec
impl PartialOrd for ParamSpec
Source§impl StaticType for ParamSpec
impl StaticType for ParamSpec
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.impl Eq for ParamSpec
impl Send for ParamSpec
impl StructuralPartialEq for ParamSpec
impl Sync for ParamSpec
Auto Trait Implementations§
impl Freeze for ParamSpec
impl RefUnwindSafe for ParamSpec
impl Unpin for ParamSpec
impl UnwindSafe for ParamSpec
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for Twhere
T: GlibPtrDefault + FromGlibPtrNone<<T as GlibPtrDefault>::GlibType> + FromGlibPtrFull<<T as GlibPtrDefault>::GlibType>,
Source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.