pub struct ShapefileHeader {
pub file_code: i32,
pub file_length: i32,
pub version: i32,
pub shape_type: ShapeType,
pub bbox: BoundingBox,
}Expand description
Shapefile header
Fields§
§file_code: i32File code (should be 9994)
file_length: i32File length in 16-bit words (including header)
version: i32Version (should be 1000)
shape_type: ShapeTypeShape type
bbox: BoundingBoxBounding box
Implementations§
Trait Implementations§
Source§impl Clone for ShapefileHeader
impl Clone for ShapefileHeader
Source§fn clone(&self) -> ShapefileHeader
fn clone(&self) -> ShapefileHeader
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ShapefileHeader
impl Debug for ShapefileHeader
Source§impl PartialEq for ShapefileHeader
impl PartialEq for ShapefileHeader
impl StructuralPartialEq for ShapefileHeader
Auto Trait Implementations§
impl Freeze for ShapefileHeader
impl RefUnwindSafe for ShapefileHeader
impl Send for ShapefileHeader
impl Sync for ShapefileHeader
impl Unpin for ShapefileHeader
impl UnsafeUnpin for ShapefileHeader
impl UnwindSafe for ShapefileHeader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more