Trait glib::types::StaticType[][src]

pub trait StaticType {
    fn static_type() -> Type;
}

Types that are supported by GLib dynamic typing.

Required Methods

Returns the type identifier of Self.

Implementations on Foreign Types

impl<'a, T: ?Sized + StaticType> StaticType for &'a T
[src]

impl<'a, T: ?Sized + StaticType> StaticType for &'a mut T
[src]

impl StaticType for bool
[src]

impl StaticType for i8
[src]

impl StaticType for u8
[src]

impl StaticType for i32
[src]

impl StaticType for u32
[src]

impl StaticType for i64
[src]

impl StaticType for u64
[src]

impl StaticType for f32
[src]

impl StaticType for f64
[src]

impl StaticType for str
[src]

impl StaticType for String
[src]

impl<'a> StaticType for [&'a str]
[src]

impl StaticType for Vec<String>
[src]

Implementors