pub struct Hat {
pub product: Option<String>,
pub product_id: Option<String>,
pub product_ver: Option<String>,
pub uuid: Option<String>,
pub vendor: Option<String>,
}
Fields§
§product: Option<String>
Product
product_id: Option<String>
Product ID
product_ver: Option<String>
Product Version
uuid: Option<String>
Hat UUID
vendor: Option<String>
Hat Vendor
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Hat
impl<'de> Deserialize<'de> for Hat
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 FromStr for Hat
Converts Query Parameters representation (style=form, explode=false) to a Hat value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for Hat
Converts Query Parameters representation (style=form, explode=false) to a Hat value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl ToString for Hat
Converts the Hat value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for Hat
Converts the Hat value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
impl StructuralPartialEq for Hat
Auto Trait Implementations§
impl Freeze for Hat
impl RefUnwindSafe for Hat
impl Send for Hat
impl Sync for Hat
impl Unpin for Hat
impl UnwindSafe for Hat
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