pub struct Catalog {
pub catalog_type: String,
pub stac_version: String,
pub id: String,
pub title: Option<String>,
pub description: String,
pub links: Vec<Link>,
pub extra: HashMap<String, JsonValue>,
}Expand description
Represents a STAC Catalog object.
See the STAC Catalog Specification for details.
Fields§
§catalog_type: StringThe type of the object, which is always “Catalog”.
stac_version: StringThe STAC version the catalog implements.
id: StringThe ID of the catalog.
title: Option<String>A human-readable title for the catalog.
description: StringA detailed description of the catalog.
links: Vec<Link>A list of links to other STAC objects.
extra: HashMap<String, JsonValue>Additional fields not part of the core specification.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Catalog
impl<'de> Deserialize<'de> for Catalog
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
Auto Trait Implementations§
impl Freeze for Catalog
impl RefUnwindSafe for Catalog
impl Send for Catalog
impl Sync for Catalog
impl Unpin for Catalog
impl UnwindSafe for Catalog
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