[][src]Struct lognplot::render::SvgOutput

pub struct SvgOutput<'w> { /* fields omitted */ }

Output to SVG file format!

Methods

impl<'w> SvgOutput<'w>[src]

pub fn new(file: &'w mut dyn Write) -> Self[src]

Trait Implementations

impl<'w> Canvas for SvgOutput<'w>[src]

Implement the canvas API for svg output!

fn draw_line(&mut self, points: &[Point])[src]

Draw a line between points.

impl<'w> Drop for SvgOutput<'w>[src]

Implement drop destructor so we can write the closing svg tag.

Auto Trait Implementations

impl<'w> !Send for SvgOutput<'w>

impl<'w> !Sync for SvgOutput<'w>

impl<'w> Unpin for SvgOutput<'w>

impl<'w> !UnwindSafe for SvgOutput<'w>

impl<'w> !RefUnwindSafe for SvgOutput<'w>

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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