[][src]Struct svg_tikz::tikz::Tikz

pub struct Tikz<W: Write> {
    pub o: W,
}

Fields

o: W

Methods

impl Tikz<BufWriter<File>>[src]

pub fn to_file<P: AsRef<Path>>(p: P) -> Result<Self, Error>[src]

impl<W: Write> Tikz<W>[src]

pub fn to_writer(o: W) -> Self[src]

Trait Implementations

impl<W: Write> Processor for Tikz<W>[src]

fn finish(&mut self) -> Result<(), Error>[src]

fn tiled<'a>(&'a mut self, style: TiledStyle) -> Tiled<'a, Self>[src]

fn layers<'a>(&'a mut self, layers: &'a [&'a str]) -> Layers<'a, Self>[src]

Auto Trait Implementations

impl<W> Send for Tikz<W> where
    W: Send

impl<W> Sync for Tikz<W> where
    W: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.