1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use super::prelude::*;
use object::ObjectType;
use std::fmt;
use std::ops;
#[repr(C)]
pub struct InstanceStruct<T: ObjectSubclass> {
parent: <T::ParentType as ObjectType>::GlibType,
}
impl<T: ObjectSubclass> fmt::Debug for InstanceStruct<T>
where
<T::ParentType as ObjectType>::GlibType: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("InstanceStruct")
.field("parent", &self.parent)
.finish()
}
}
unsafe impl<T: ObjectSubclass> super::types::InstanceStruct for InstanceStruct<T> {
type Type = T;
}
#[repr(C)]
pub struct ClassStruct<T: ObjectSubclass> {
parent_class: <T::ParentType as ObjectType>::GlibClassType,
}
impl<T: ObjectSubclass> fmt::Debug for ClassStruct<T>
where
<T::ParentType as ObjectType>::GlibClassType: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("InstanceStruct")
.field("parent_class", &self.parent_class)
.finish()
}
}
unsafe impl<T: ObjectSubclass> super::types::ClassStruct for ClassStruct<T> {
type Type = T;
}
impl<T: ObjectSubclass> ops::Deref for ClassStruct<T> {
type Target = <<T as ObjectSubclass>::ParentType as ObjectType>::RustClassType;
fn deref(&self) -> &Self::Target {
unsafe { &*(self as *const _ as *const Self::Target) }
}
}
impl<T: ObjectSubclass> ops::DerefMut for ClassStruct<T> {
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe { &mut *(self as *mut _ as *mut Self::Target) }
}
}