[][src]Struct pathfinder::IW

pub struct IW { /* fields omitted */ }

Image wrapper around the Image crate to enable better debugging panics.

Methods

impl IW[src]

pub fn image(&self) -> &ImageBuffer<Rgba<u8>, Vec<u8>>[src]

Retrieves the private image field.

pub fn put<L: Location>(&mut self, l: &L, color: Rgba<u8>)[src]

Wraps around Image put_pixel but indicates failed positions.

Set debug_assertions flag to panic for out of bounds positions with improved debugging messages.

pub fn dimensions(&self) -> Coordinate[src]

Returns a coordinate with the width and height of the image buffer.

Trait Implementations

impl Clone for IW[src]

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

Performs copy-assignment from source. Read more

impl Debug for IW[src]

Auto Trait Implementations

impl Send for IW

impl Unpin for IW

impl Sync for IW

impl UnwindSafe for IW

impl RefUnwindSafe for IW

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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<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]

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.