[][src]Struct geojsonseq::write::GeoJsonSeqWriter

pub struct GeoJsonSeqWriter<R: Write> { /* fields omitted */ }

Writes GeoJSON objects from a Write

Implementations

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

pub fn new(inner: W) -> Self[src]

Create from this reader

pub fn write_object(&mut self, o: GeoJson) -> Result<(), Error>[src]

Write a GeoJSON object to this

pub fn get_ref(&self) -> &W[src]

pub fn get_mut(&mut self) -> &mut W[src]

pub fn into_inner(self) -> W[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for GeoJsonSeqWriter<R> where
    R: RefUnwindSafe

impl<R> Send for GeoJsonSeqWriter<R> where
    R: Send

impl<R> Sync for GeoJsonSeqWriter<R> where
    R: Sync

impl<R> Unpin for GeoJsonSeqWriter<R> where
    R: Unpin

impl<R> UnwindSafe for GeoJsonSeqWriter<R> where
    R: UnwindSafe

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.