pub enum ShpRecordContent {
Null,
Point(PointShape),
MultiPoint(MultiPointShape),
PolyLine(PolyLineShape),
Polygon(PolygonShape),
}Variants§
Implementations§
Source§impl ShpRecordContent
impl ShpRecordContent
pub fn parse(record_content: &[u8]) -> ShpRecordContent
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShpRecordContent
impl RefUnwindSafe for ShpRecordContent
impl Send for ShpRecordContent
impl Sync for ShpRecordContent
impl Unpin for ShpRecordContent
impl UnwindSafe for ShpRecordContent
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