[][src]Struct mbus_api::models::Hat

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

impl Hat[src]

pub fn new() -> Hat[src]

Trait Implementations

impl Clone for Hat[src]

impl Debug for Hat[src]

impl<'de> Deserialize<'de> for Hat[src]

impl FromStr for Hat[src]

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

type Err = String

The associated error which can be returned from parsing.

impl PartialEq<Hat> for Hat[src]

impl Serialize for Hat[src]

impl StructuralPartialEq for Hat[src]

impl ToString for Hat[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Hat

impl Send for Hat

impl Sync for Hat

impl Unpin for Hat

impl UnwindSafe for Hat

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,