pub struct CloudTag {
pub key: Option<String>,
pub value: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub links: Option<Vec<HashMap<String, Value>>>,
pub extra: Value,
}
Expand description
Database tag
Fields§
§key: Option<String>
§value: Option<String>
§created_at: Option<String>
§updated_at: Option<String>
§links: Option<Vec<HashMap<String, Value>>>
HATEOAS links
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CloudTag
impl<'de> Deserialize<'de> for CloudTag
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 CloudTag
impl RefUnwindSafe for CloudTag
impl Send for CloudTag
impl Sync for CloudTag
impl Unpin for CloudTag
impl UnwindSafe for CloudTag
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