Struct rust_expression::Area[][src]

pub struct Area {
    pub x: Range,
    pub y: Range,
}

Fields

x: Rangey: Range

Implementations

impl Area[src]

pub fn new(x_min: Number, y_min: Number, x_max: Number, y_max: Number) -> Area[src]

pub fn move_by(&mut self, x_delta: Number, y_delta: Number)[src]

pub fn zoom_by(&mut self, factor: Number)[src]

Trait Implementations

impl Clone for Area[src]

impl Copy for Area[src]

impl Debug for Area[src]

impl PartialEq<Area> for Area[src]

impl StructuralPartialEq for Area[src]

Auto Trait Implementations

impl RefUnwindSafe for Area

impl Send for Area

impl Sync for Area

impl Unpin for Area

impl UnwindSafe for Area

Blanket Implementations

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

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

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

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.