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
#![allow(unused_variables)]
use crate::prelude::*;
use crate::{Actor, Widget};
use std::fmt;
#[derive(Clone, Debug)]
pub struct Frame {
pub child: Option<Actor>,
widget: Widget,
}
impl Frame {
pub fn new() -> Frame {
unimplemented!()
}
}
impl Default for Frame {
fn default() -> Self {
Self::new()
}
}
impl Object for Frame {}
impl Is<Frame> for Frame {}
impl AsRef<Frame> for Frame {
fn as_ref(&self) -> &Frame {
self
}
}
impl Is<Widget> for Frame {}
impl AsRef<Widget> for Frame {
fn as_ref(&self) -> &Widget {
&self.widget
}
}
impl Is<Actor> for Frame {}
impl AsRef<Actor> for Frame {
fn as_ref(&self) -> &Actor {
let actor: &Actor = self.widget.as_ref();
actor
}
}
impl fmt::Display for Frame {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Frame")
}
}