pub struct ReleaseReference {
    pub attempt: Option<i32>,
    pub creation_date: Option<OffsetDateTime>,
    pub definition_id: Option<i32>,
    pub environment_creation_date: Option<OffsetDateTime>,
    pub environment_definition_id: Option<i32>,
    pub environment_definition_name: Option<String>,
    pub environment_id: Option<i32>,
    pub environment_name: Option<String>,
    pub id: Option<i32>,
    pub name: Option<String>,
}Expand description
Reference to a release.
Fields§
§attempt: Option<i32>Number of Release Attempt.
creation_date: Option<OffsetDateTime>Release Creation Date(UTC).
definition_id: Option<i32>Release definition ID.
environment_creation_date: Option<OffsetDateTime>Environment creation Date(UTC).
environment_definition_id: Option<i32>Release environment definition ID.
environment_definition_name: Option<String>Release environment definition name.
environment_id: Option<i32>Release environment ID.
environment_name: Option<String>Release environment name.
id: Option<i32>Release ID.
name: Option<String>Release name.
Implementations§
Trait Implementations§
source§impl Clone for ReleaseReference
 
impl Clone for ReleaseReference
source§fn clone(&self) -> ReleaseReference
 
fn clone(&self) -> ReleaseReference
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for ReleaseReference
 
impl Debug for ReleaseReference
source§impl Default for ReleaseReference
 
impl Default for ReleaseReference
source§fn default() -> ReleaseReference
 
fn default() -> ReleaseReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ReleaseReference
 
impl<'de> Deserialize<'de> for ReleaseReference
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 PartialEq for ReleaseReference
 
impl PartialEq for ReleaseReference
source§fn eq(&self, other: &ReleaseReference) -> bool
 
fn eq(&self, other: &ReleaseReference) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for ReleaseReference
 
impl Serialize for ReleaseReference
impl StructuralPartialEq for ReleaseReference
Auto Trait Implementations§
impl RefUnwindSafe for ReleaseReference
impl Send for ReleaseReference
impl Sync for ReleaseReference
impl Unpin for ReleaseReference
impl UnwindSafe for ReleaseReference
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