pub struct Terms {
pub description: Option<String>,
pub limitations: Option<String>,
pub url: Option<String>,
pub extra: HashMap<String, Value>,
}Expand description
Terms and conditions (ODCS v3.1.0)
Fields§
§description: Option<String>Terms description
limitations: Option<String>Usage limitations
url: Option<String>URL to full terms
extra: HashMap<String, Value>Additional properties
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Terms
impl<'de> Deserialize<'de> for Terms
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Terms, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Terms, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Terms
impl Serialize for Terms
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for Terms
Auto Trait Implementations§
impl Freeze for Terms
impl RefUnwindSafe for Terms
impl Send for Terms
impl Sync for Terms
impl Unpin for Terms
impl UnwindSafe for Terms
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