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

pub struct Ticket {
    pub more_info: String,
    pub status: i32,
    pub ticket: 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: Valuecreate_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 Ticket[src]

impl Default for Ticket[src]

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

impl Serialize for Ticket[src]

Auto Trait Implementations

impl RefUnwindSafe for Ticket

impl Send for Ticket

impl Sync for Ticket

impl Unpin for Ticket

impl UnwindSafe for Ticket

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