[][src]Struct glib::object::ObjectClass

#[repr(C)]
pub struct ObjectClass(_);

Methods

impl ObjectClass[src]

pub fn has_property<'a, N: Into<&'a str>>(
    &self,
    property_name: N,
    type_: Option<Type>
) -> Result<(), BoolError>
[src]

pub fn get_property_type<'a, N: Into<&'a str>>(
    &self,
    property_name: N
) -> Option<Type>
[src]

pub fn find_property<'a, N: Into<&'a str>>(
    &self,
    property_name: N
) -> Option<ParamSpec>
[src]

pub fn list_properties(&self) -> Vec<ParamSpec>[src]

Trait Implementations

impl IsClassFor for ObjectClass[src]

type Instance = Object

Corresponding Rust instance type for this class.

fn get_type(&self) -> Type[src]

Get the type id for this class.

fn upcast_ref<U: IsClassFor>(&self) -> &U where
    Self::Instance: IsA<U::Instance>,
    U::Instance: ObjectType
[src]

Casts this class to a reference to a parent type's class.

fn upcast_ref_mut<U: IsClassFor>(&mut self) -> &mut U where
    Self::Instance: IsA<U::Instance>,
    U::Instance: ObjectType
[src]

Casts this class to a mutable reference to a parent type's class.

fn downcast_ref<U: IsClassFor>(&self) -> Option<&U> where
    U::Instance: IsA<Self::Instance>,
    Self::Instance: ObjectType
[src]

Casts this class to a reference to a child type's class or fails if this class is not implementing the child class. Read more

fn downcast_ref_mut<U: IsClassFor>(&mut self) -> Option<&mut U> where
    U::Instance: IsA<Self::Instance>,
    Self::Instance: ObjectType
[src]

Casts this class to a mutable reference to a child type's class or fails if this class is not implementing the child class. Read more

fn from_type(type_: Type) -> Option<ClassRef<Self>>[src]

Gets the class struct corresponding to type_. Read more

impl Sync for ObjectClass[src]

impl Send for ObjectClass[src]

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.