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

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

Trait implemented by all the Shapes that can be read

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl ReadableShape for Shape
[src]

type ReadShape = Self

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

type ReadShape = S::ActualShape

Loading content...