pub struct Conformance {
pub conforms_to: Vec<String>,
}Expand description
The Conformance declaration states the conformance classes from standards or community specifications, identified by a URI, that the API conforms to. Clients can but are not required to use this information. Accessing the Conformance declaration using HTTP GET returns the list of URIs of conformance classes implemented by the server.
Fields§
§conforms_to: Vec<String>Implementations§
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 Default for Conformance
impl Default for Conformance
Source§fn default() -> Conformance
fn default() -> Conformance
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for Conformance
impl PartialEq for Conformance
Source§impl Serialize for Conformance
impl Serialize for Conformance
impl Eq for Conformance
impl StructuralPartialEq for Conformance
Auto Trait Implementations§
impl Freeze for Conformance
impl RefUnwindSafe for Conformance
impl Send for Conformance
impl Sync for Conformance
impl Unpin for Conformance
impl UnsafeUnpin 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