pub struct Interface {Show 15 fields
pub name: String,
pub c_type: String,
pub symbol_prefix: String,
pub type_struct: Option<String>,
pub c_class_type: Option<String>,
pub glib_get_type: String,
pub functions: Vec<Function>,
pub virtual_methods: Vec<Function>,
pub signals: Vec<Signal>,
pub properties: Vec<Property>,
pub prerequisites: Vec<TypeId>,
pub version: Option<Version>,
pub deprecated_version: Option<Version>,
pub doc: Option<String>,
pub doc_deprecated: Option<String>,
}
Fields§
§name: String
§c_type: String
§symbol_prefix: String
§type_struct: Option<String>
§c_class_type: Option<String>
§glib_get_type: String
§functions: Vec<Function>
§virtual_methods: Vec<Function>
§signals: Vec<Signal>
§properties: Vec<Property>
§prerequisites: Vec<TypeId>
§version: Option<Version>
§deprecated_version: Option<Version>
§doc: Option<String>
§doc_deprecated: Option<String>
Trait Implementations§
source§impl Ord for Interface
impl Ord for Interface
source§impl PartialOrd for Interface
impl PartialOrd for Interface
impl Eq for Interface
Auto Trait Implementations§
impl Freeze for Interface
impl RefUnwindSafe for Interface
impl Send for Interface
impl Sync for Interface
impl Unpin for Interface
impl UnwindSafe for Interface
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.