pub struct OgrSource {
pub params: Box<OgrSourceParameters>,
pub type: Type,
}Expand description
OgrSource : The OgrSource is a source operator that reads vector data using OGR (part of GDAL). The counterpart for raster data is the [GdalSource]. ## Errors If the given dataset does not exist or is not readable, an error is thrown.
Fields§
§params: Box<OgrSourceParameters>§type: TypeImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OgrSource
impl<'de> Deserialize<'de> for OgrSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for OgrSource
Auto Trait Implementations§
impl Freeze for OgrSource
impl RefUnwindSafe for OgrSource
impl Send for OgrSource
impl Sync for OgrSource
impl Unpin for OgrSource
impl UnsafeUnpin for OgrSource
impl UnwindSafe for OgrSource
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