[][src]Struct csv2svg::Rect

pub struct Rect<N: Num + Copy> {
    pub left: N,
    pub top: N,
    pub width: N,
    pub height: N,
}

Fields

left: Ntop: Nwidth: Nheight: N

Implementations

impl<N: Num + Copy> Rect<N>[src]

pub fn new<I: Into<N>>(left: I, top: I, width: I, height: I) -> Self[src]

pub fn bottom(&self) -> N[src]

pub fn right(&self) -> N[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for Rect<N> where
    N: RefUnwindSafe
[src]

impl<N> Send for Rect<N> where
    N: Send
[src]

impl<N> Sync for Rect<N> where
    N: Sync
[src]

impl<N> Unpin for Rect<N> where
    N: Unpin
[src]

impl<N> UnwindSafe for Rect<N> where
    N: UnwindSafe
[src]

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,