Trait shapefile::record::ReadableShape[][src]

pub trait ReadableShape: Sized {
    fn read_from<T: Read>(
        source: &mut T,
        record_size: i32
    ) -> Result<Self, Error>; }

Trait implemented by all the Shapes that can be read

Required methods

fn read_from<T: Read>(source: &mut T, record_size: i32) -> Result<Self, Error>[src]

Loading content...

Implementors

impl ReadableShape for Shape[src]

impl<S: ConcreteReadableShape> ReadableShape for S[src]

Loading content...