pub struct GeoJsonMultiLineString {
pub type: Type,
pub coordinates: Vec<Vec<Vec<f64>>>,
pub bbox: Option<Vec<f64>>,
}Fields§
§type: Type§coordinates: Vec<Vec<Vec<f64>>>§bbox: Option<Vec<f64>>A GeoJSON bounding box. Please refer to IETF RFC 7946 for information on the GeoJSON format.
Implementations§
Trait Implementations§
Source§impl Clone for GeoJsonMultiLineString
impl Clone for GeoJsonMultiLineString
Source§fn clone(&self) -> GeoJsonMultiLineString
fn clone(&self) -> GeoJsonMultiLineString
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GeoJsonMultiLineString
impl Debug for GeoJsonMultiLineString
Source§impl Default for GeoJsonMultiLineString
impl Default for GeoJsonMultiLineString
Source§fn default() -> GeoJsonMultiLineString
fn default() -> GeoJsonMultiLineString
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeoJsonMultiLineString
impl<'de> Deserialize<'de> for GeoJsonMultiLineString
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
Source§impl PartialEq for GeoJsonMultiLineString
impl PartialEq for GeoJsonMultiLineString
Source§impl Serialize for GeoJsonMultiLineString
impl Serialize for GeoJsonMultiLineString
impl StructuralPartialEq for GeoJsonMultiLineString
Auto Trait Implementations§
impl Freeze for GeoJsonMultiLineString
impl RefUnwindSafe for GeoJsonMultiLineString
impl Send for GeoJsonMultiLineString
impl Sync for GeoJsonMultiLineString
impl Unpin for GeoJsonMultiLineString
impl UnsafeUnpin for GeoJsonMultiLineString
impl UnwindSafe for GeoJsonMultiLineString
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