Skip to main content

FeatureCollection

Struct FeatureCollection 

Source
pub struct FeatureCollection<G = Geometry, P = Properties> {
    pub features: Vec<Feature<G, P>>,
    pub bbox: Option<Bbox>,
    pub foreign_members: ForeignMembers,
}
Expand description

A GeoJSON FeatureCollection of typed features.

collect from any iterator of Features:

use typed_geojson::{Feature, FeatureCollection, Point};

let fc: FeatureCollection<Point, &str> = [
    Feature::new(Point::new(vec![0.0, 0.0]), "origin"),
    Feature::new(Point::new(vec![1.0, 1.0]), "ne"),
]
.into_iter()
.collect();

assert_eq!(fc.features.len(), 2);
assert!(serde_json::to_string(&fc).unwrap().starts_with(r#"{"type":"FeatureCollection""#));

Fields§

§features: Vec<Feature<G, P>>§bbox: Option<Bbox>§foreign_members: ForeignMembers

Foreign members (RFC 7946 §6.1) preserved verbatim; empty when there are none. See ForeignMembers.

Trait Implementations§

Source§

impl<G: Clone, P: Clone> Clone for FeatureCollection<G, P>

Source§

fn clone(&self) -> FeatureCollection<G, P>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<G: Debug, P: Debug> Debug for FeatureCollection<G, P>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, G: Deserialize<'de>, P: Deserialize<'de>> Deserialize<'de> for FeatureCollection<G, P>

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<G, P> FromIterator<Feature<G, P>> for FeatureCollection<G, P>

Source§

fn from_iter<I: IntoIterator<Item = Feature<G, P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
Source§

impl<G: PartialEq, P: PartialEq> PartialEq for FeatureCollection<G, P>

Source§

fn eq(&self, other: &FeatureCollection<G, P>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<G: Serialize, P: Serialize> Serialize for FeatureCollection<G, P>

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl<G: PartialEq, P: PartialEq> StructuralPartialEq for FeatureCollection<G, P>

Auto Trait Implementations§

§

impl<G, P> Freeze for FeatureCollection<G, P>

§

impl<G, P> RefUnwindSafe for FeatureCollection<G, P>

§

impl<G, P> Send for FeatureCollection<G, P>
where G: Send, P: Send,

§

impl<G, P> Sync for FeatureCollection<G, P>
where G: Sync, P: Sync,

§

impl<G, P> Unpin for FeatureCollection<G, P>
where G: Unpin, P: Unpin,

§

impl<G, P> UnsafeUnpin for FeatureCollection<G, P>

§

impl<G, P> UnwindSafe for FeatureCollection<G, P>
where G: UnwindSafe, P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.