pub struct ShapeRecord {
pub record_number: i32,
pub shape: Shape,
}Expand description
A Shapefile record
Fields§
§record_number: i32Record number (1-based)
shape: ShapeShape geometry
Implementations§
Trait Implementations§
Source§impl Clone for ShapeRecord
impl Clone for ShapeRecord
Source§fn clone(&self) -> ShapeRecord
fn clone(&self) -> ShapeRecord
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 moreAuto Trait Implementations§
impl Freeze for ShapeRecord
impl RefUnwindSafe for ShapeRecord
impl Send for ShapeRecord
impl Sync for ShapeRecord
impl Unpin for ShapeRecord
impl UnsafeUnpin for ShapeRecord
impl UnwindSafe for ShapeRecord
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