#[non_exhaustive]pub struct GeoParsed {
pub layer: GeoLayer,
pub warnings: Vec<String>,
}Expand description
Output of a tolerant geo read: the layer plus the reader’s notes on records it could not use.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.layer: GeoLayer§warnings: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GeoParsed
impl RefUnwindSafe for GeoParsed
impl Send for GeoParsed
impl Sync for GeoParsed
impl Unpin for GeoParsed
impl UnsafeUnpin for GeoParsed
impl UnwindSafe for GeoParsed
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