[][src]Struct kml::reader::KmlReader

pub struct KmlReader<B: BufRead, T: Float + FromStr + Default + Debug = f64> { /* fields omitted */ }

Implementations

impl<'a, T> KmlReader<&'a [u8], T> where
    T: Float + FromStr + Default + Debug
[src]

pub fn from_string(s: &str) -> KmlReader<&[u8], T>[src]

impl<B: BufRead, T> KmlReader<B, T> where
    T: Float + FromStr + Default + Debug
[src]

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

Auto Trait Implementations

impl<B, T> RefUnwindSafe for KmlReader<B, T> where
    B: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<B, T> Send for KmlReader<B, T> where
    B: Send,
    T: Send
[src]

impl<B, T> Sync for KmlReader<B, T> where
    B: Sync,
    T: Sync
[src]

impl<B, T> Unpin for KmlReader<B, T> where
    B: Unpin,
    T: Unpin
[src]

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