[][src]Struct kml::writer::KmlWriter

pub struct KmlWriter<W: Write, T: CoordType + FromStr + Default = f64> { /* fields omitted */ }

Implementations

impl<'a, W, T> KmlWriter<W, T> where
    W: Write,
    T: CoordType + FromStr + Default + Display
[src]

pub fn new(writer: Writer<W>) -> KmlWriter<W, T>[src]

pub fn write(&mut self, kml: &Kml<T>) -> Result<(), Error>[src]

Auto Trait Implementations

impl<W, T> RefUnwindSafe for KmlWriter<W, T> where
    T: RefUnwindSafe,
    W: RefUnwindSafe
[src]

impl<W, T> Send for KmlWriter<W, T> where
    T: Send,
    W: Send
[src]

impl<W, T> Sync for KmlWriter<W, T> where
    T: Sync,
    W: Sync
[src]

impl<W, T> Unpin for KmlWriter<W, T> where
    T: Unpin,
    W: Unpin
[src]

impl<W, T> UnwindSafe for KmlWriter<W, T> where
    T: UnwindSafe,
    W: 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.