[][src]Struct hubcaps::deployments::Deployment

pub struct Deployment {
    pub url: String,
    pub id: u64,
    pub sha: String,
    pub commit_ref: String,
    pub task: String,
    pub payload: Value,
    pub environment: String,
    pub description: Option<String>,
    pub creator: User,
    pub created_at: String,
    pub updated_at: String,
    pub statuses_url: String,
    pub repository_url: String,
}

Fields

url: Stringid: u64sha: Stringcommit_ref: Stringtask: Stringpayload: Valueenvironment: Stringdescription: Option<String>creator: Usercreated_at: Stringupdated_at: Stringstatuses_url: Stringrepository_url: String

Trait Implementations

impl Debug for Deployment[src]

impl<'de> Deserialize<'de> for Deployment[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.