pub struct Conformance {
pub conforms_to: Vec<String>,
}Expand description
Represents the response from a STAC API’s /conformance endpoint.
See the STAC API Conformance documentation for details.
Fields§
§conforms_to: Vec<String>A list of conformance class URIs that the API conforms to.
Implementations§
Source§impl Conformance
impl Conformance
Trait Implementations§
Source§impl Clone for Conformance
impl Clone for Conformance
Source§fn clone(&self) -> Conformance
fn clone(&self) -> Conformance
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 Conformance
impl Debug for Conformance
Source§impl<'de> Deserialize<'de> for Conformance
impl<'de> Deserialize<'de> for Conformance
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 Conformance
impl RefUnwindSafe for Conformance
impl Send for Conformance
impl Sync for Conformance
impl Unpin for Conformance
impl UnwindSafe for Conformance
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