pub struct Type(/* private fields */);
Expand description
A GLib or GLib-based library type
Implementations§
Source§impl Type
impl Type
Sourcepub const PARAM_SPEC: Self = _
pub const PARAM_SPEC: Self = _
The fundamental type from which all GParamSpec
types are derived
pub fn name<'a>(self) -> &'a str
pub fn qname(self) -> Quark
pub fn is_a(self, other: Self) -> bool
pub fn parent(self) -> Option<Self>
pub fn children(self) -> Slice<Self>
pub fn interfaces(self) -> Slice<Self>
pub fn interface_prerequisites(self) -> Slice<Self>
pub fn from_name(name: impl IntoGStr) -> Option<Self>
pub fn plugin(self) -> Option<TypePlugin>
pub fn register_dynamic( parent_type: Self, name: impl IntoGStr, plugin: &TypePlugin, flags: TypeFlags, ) -> Self
pub fn add_interface_dynamic(self, interface_type: Self, plugin: &TypePlugin)
Trait Implementations§
Source§impl From<SignalType> for Type
impl From<SignalType> for Type
Source§fn from(type_: SignalType) -> Self
fn from(type_: SignalType) -> Self
Converts to this type from the input type.
Source§impl From<Type> for SignalType
impl From<Type> for SignalType
Source§impl Ord for Type
impl Ord for Type
Source§impl PartialEq<Type> for SignalType
impl PartialEq<Type> for SignalType
Source§impl PartialOrd for Type
impl PartialOrd for Type
Source§impl StaticType for Type
impl StaticType for Type
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for Type
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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()
Ensures that the type has been registered with the type system.
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.