pub struct CollectionSummary {
pub id: String,
pub title: Option<String>,
pub description: Option<String>,
pub stac_version: String,
pub links: Vec<Link>,
pub extent: Option<Value>,
}Expand description
Summary information for a STAC Collection.
Fields§
§id: StringUnique collection identifier.
title: Option<String>Human-readable title.
description: Option<String>Brief description.
stac_version: StringSTAC version.
links: Vec<Link>Navigation links (e.g., "self", "items").
extent: Option<Value>Spatial extent bounding box(es) [[west, south, east, north]].
Implementations§
Source§impl CollectionSummary
impl CollectionSummary
Trait Implementations§
Source§impl Clone for CollectionSummary
impl Clone for CollectionSummary
Source§fn clone(&self) -> CollectionSummary
fn clone(&self) -> CollectionSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 CollectionSummary
impl Debug for CollectionSummary
Source§impl<'de> Deserialize<'de> for CollectionSummary
impl<'de> Deserialize<'de> for CollectionSummary
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 CollectionSummary
impl PartialEq for CollectionSummary
Source§impl Serialize for CollectionSummary
impl Serialize for CollectionSummary
impl StructuralPartialEq for CollectionSummary
Auto Trait Implementations§
impl Freeze for CollectionSummary
impl RefUnwindSafe for CollectionSummary
impl Send for CollectionSummary
impl Sync for CollectionSummary
impl Unpin for CollectionSummary
impl UnsafeUnpin for CollectionSummary
impl UnwindSafe for CollectionSummary
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