[][src]Struct aiven_rs::ticket::types::TicketList

pub struct TicketList {
    pub more_info: String,
    pub status: i32,
    pub ticket: Vec<Value>,
    pub create_time: String,
    pub description: String,
    pub followers: Vec<Value>,
    pub real_name: String,
    pub user_email: String,
    pub user_id: String,
    pub following: bool,
    pub project_name: String,
    pub service_name: String,
    pub severity: String,
    pub state: String,
    pub submitter: Value,
    pub ticket_id: String,
    pub title: String,
    pub update_time: String,
    pub user_real_name: String,
}

Fields

more_info: Stringstatus: i32ticket: Vec<Value>create_time: Stringdescription: Stringfollowers: Vec<Value>real_name: Stringuser_email: Stringuser_id: Stringfollowing: boolproject_name: Stringservice_name: Stringseverity: Stringstate: Stringsubmitter: Valueticket_id: Stringtitle: Stringupdate_time: Stringuser_real_name: String

Trait Implementations

impl Debug for TicketList[src]

impl Default for TicketList[src]

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

impl Serialize for TicketList[src]

Auto Trait Implementations

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, 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>,