Loosen bounds on Text Clone impl

This commit is contained in:
Imbris 2020-05-27 01:33:16 -04:00
parent 5324eb1024
commit 0a775191ab

View File

@ -19,7 +19,7 @@ use std::hash::Hash;
/// ```
///
/// ![Text drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text.png?raw=true)
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct Text<Renderer: self::Renderer> {
content: String,
size: Option<u16>,
@ -239,3 +239,18 @@ where
Element::new(text)
}
}
impl<Renderer: self::Renderer> Clone for Text<Renderer> {
fn clone(&self) -> Self {
Self {
content: self.content.clone(),
size: self.size,
color: self.color,
font: self.font,
width: self.width,
height: self.height,
horizontal_alignment: self.horizontal_alignment,
vertical_alignment: self.vertical_alignment,
}
}
}