Compiling checkpoint
This commit is contained in:
parent
7662210776
commit
85f35497b6
3 changed files with 77 additions and 19 deletions
|
@ -43,3 +43,12 @@ impl<V: 'static> Element<V> for Frame<V> {
|
|||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<V> Clone for Frame<V> {
|
||||
fn clone(&self) -> Self {
|
||||
Self {
|
||||
style: self.style.clone(),
|
||||
children: self.children.clone(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue