[][src]Struct geo_svg::ViewBox

pub struct ViewBox {
    pub min_x: Option<f32>,
    pub min_y: Option<f32>,
    pub max_x: Option<f32>,
    pub max_y: Option<f32>,
}

Fields

min_x: Option<f32>min_y: Option<f32>max_x: Option<f32>max_y: Option<f32>

Methods

impl ViewBox[src]

pub fn new(min_x: f32, min_y: f32, max_x: f32, max_y: f32) -> Self[src]

pub fn add(&self, other: &Self) -> Self[src]

pub fn min_x(&self) -> f32[src]

pub fn min_y(&self) -> f32[src]

pub fn max_x(&self) -> f32[src]

pub fn max_y(&self) -> f32[src]

pub fn width(&self) -> f32[src]

pub fn height(&self) -> f32[src]

pub fn with_margin(self, margin: f32) -> Self[src]

Trait Implementations

impl Default for ViewBox[src]

impl Clone for ViewBox[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<ViewBox> for ViewBox[src]

impl Copy for ViewBox[src]

impl Debug for ViewBox[src]

Auto Trait Implementations

impl Unpin for ViewBox

impl Send for ViewBox

impl Sync for ViewBox

impl RefUnwindSafe for ViewBox

impl UnwindSafe for ViewBox

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]