diff options
author | 2019-11-29 20:52:26 -0500 | |
---|---|---|
committer | 2019-11-29 20:52:26 -0500 | |
commit | 62725a76ef4f567c16d569fb5da5ffcc0481cb2a (patch) | |
tree | f9505a4e2bc7f4f0038252caa733ba33a4e147cc /native/src/size.rs | |
parent | 811d8b90d71c26100f0933217f5474e090fbf17c (diff) | |
download | iced-62725a76ef4f567c16d569fb5da5ffcc0481cb2a.tar.gz iced-62725a76ef4f567c16d569fb5da5ffcc0481cb2a.tar.bz2 iced-62725a76ef4f567c16d569fb5da5ffcc0481cb2a.zip |
Add `From` impls for `Length`, `Point`, and `Size`
Diffstat (limited to 'native/src/size.rs')
-rw-r--r-- | native/src/size.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/native/src/size.rs b/native/src/size.rs index 30e2a57e..389b3247 100644 --- a/native/src/size.rs +++ b/native/src/size.rs @@ -37,3 +37,15 @@ impl Size { } } } + +impl From<[f32; 2]> for Size { + fn from([width, height]: [f32; 2]) -> Self { + Size { width, height } + } +} + +impl From<[u16; 2]> for Size { + fn from([width, height]: [u16; 2]) -> Self { + Size::new(width.into(), height.into()) + } +} |