pub struct ClassRef<'a, T: IsClass>(_, _, _);
Expand description
Reference to the class struct of type T
.
Methods from Deref<Target = Class<T>>§
sourcepub fn has_property(&self, property_name: &str, type_: Option<Type>) -> bool
pub fn has_property(&self, property_name: &str, type_: Option<Type>) -> bool
Check if the object class has a property property_name
of the given type_
.
If no type is provided then only the existence of the property is checked.
sourcepub fn property_type(&self, property_name: &str) -> Option<Type>
pub fn property_type(&self, property_name: &str) -> Option<Type>
Get the type of the property property_name
of this object class.
This returns None
if the property does not exist.
sourcepub fn find_property(&self, property_name: &str) -> Option<ParamSpec>
pub fn find_property(&self, property_name: &str) -> Option<ParamSpec>
Get the ParamSpec
of the property property_name
of this object class.
sourcepub fn list_properties(&self) -> PtrSlice<ParamSpec>
pub fn list_properties(&self) -> PtrSlice<ParamSpec>
Return all ParamSpec
of the properties of this object class.
sourcepub fn type_(&self) -> Type
pub fn type_(&self) -> Type
Get the type id for this class.
This is not equivalent to T::static_type()
but is the type of the subclass of T
where
this class belongs to.
sourcepub fn upcast_ref<U: IsClass>(&self) -> &Class<U>where
T: IsA<U>,
pub fn upcast_ref<U: IsClass>(&self) -> &Class<U>where T: IsA<U>,
Casts this class to a reference to a parent type’s class.
Trait Implementations§
impl<'a, T: IsClass> Send for ClassRef<'a, T>
impl<'a, T: IsClass> Sync for ClassRef<'a, T>
Auto Trait Implementations§
impl<'a, T> RefUnwindSafe for ClassRef<'a, T>where <T as ObjectType>::GlibClassType: RefUnwindSafe,
impl<'a, T> Unpin for ClassRef<'a, T>
impl<'a, T> UnwindSafe for ClassRef<'a, T>where <T as ObjectType>::GlibClassType: RefUnwindSafe,
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