[][src]Struct glib::subclass::simple::ClassStruct

#[repr(C)]
pub struct ClassStruct<T: ObjectSubclass> { /* fields omitted */ }

A simple class struct that does not store any additional data or virtual methods.

Trait Implementations

impl<T: ObjectSubclass> ClassStruct for ClassStruct<T>[src]

type Type = T

Corresponding object subclass type for this class struct.

impl<T: ObjectSubclass> Debug for ClassStruct<T> where
    <T::ParentType as ObjectType>::GlibClassType: Debug
[src]

impl<T: ObjectSubclass> Deref for ClassStruct<T>[src]

type Target = <<T as ObjectSubclass>::ParentType as ObjectType>::RustClassType

The resulting type after dereferencing.

impl<T: ObjectSubclass> DerefMut for ClassStruct<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ClassStruct<T> where
    <<T as ObjectSubclass>::ParentType as ObjectType>::GlibClassType: RefUnwindSafe

impl<T> Send for ClassStruct<T> where
    <<T as ObjectSubclass>::ParentType as ObjectType>::GlibClassType: Send

impl<T> Sync for ClassStruct<T> where
    <<T as ObjectSubclass>::ParentType as ObjectType>::GlibClassType: Sync

impl<T> Unpin for ClassStruct<T> where
    <<T as ObjectSubclass>::ParentType as ObjectType>::GlibClassType: Unpin

impl<T> UnwindSafe for ClassStruct<T> where
    <<T as ObjectSubclass>::ParentType as ObjectType>::GlibClassType: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.