Struct usvg_tree::ScreenSize
source · pub struct ScreenSize { /* private fields */ }
Expand description
A 2D screen size representation.
Width and height are guarantee to be > 0.
Implementations§
source§impl ScreenSize
impl ScreenSize
sourcepub fn dimensions(&self) -> (u32, u32)
pub fn dimensions(&self) -> (u32, u32)
Returns width and height as a tuple.
sourcepub fn fit_view_box(&self, vb: &ViewBox) -> Self
pub fn fit_view_box(&self, vb: &ViewBox) -> Self
Fits size into a viewbox.
Trait Implementations§
source§impl Clone for ScreenSize
impl Clone for ScreenSize
source§fn clone(&self) -> ScreenSize
fn clone(&self) -> ScreenSize
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScreenSize
impl Debug for ScreenSize
source§impl Display for ScreenSize
impl Display for ScreenSize
source§impl PartialEq<ScreenSize> for ScreenSize
impl PartialEq<ScreenSize> for ScreenSize
source§fn eq(&self, other: &ScreenSize) -> bool
fn eq(&self, other: &ScreenSize) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.