pub struct ReleaseReference {
pub links: Option<Value>,
pub artifacts: Vec<Artifact>,
pub created_by: Option<IdentityRef>,
pub created_on: Option<OffsetDateTime>,
pub description: Option<String>,
pub id: Option<i32>,
pub modified_by: Option<IdentityRef>,
pub name: Option<String>,
pub reason: Option<Reason>,
pub release_definition: Option<ReleaseDefinitionShallowReference>,
}Fields§
§links: Option<Value>Links
artifacts: Vec<Artifact>Gets list of artifacts.
created_by: Option<IdentityRef>§created_on: Option<OffsetDateTime>Gets date on when this release created.
description: Option<String>Gets description.
id: Option<i32>ID of the Release.
modified_by: Option<IdentityRef>§name: Option<String>Gets name of release.
reason: Option<Reason>Gets reason for release.
release_definition: Option<ReleaseDefinitionShallowReference>Implementations§
Trait Implementations§
Source§impl Clone for ReleaseReference
impl Clone for ReleaseReference
Source§fn clone(&self) -> ReleaseReference
fn clone(&self) -> ReleaseReference
Returns a duplicate 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§impl Serialize for ReleaseReference
impl Serialize for ReleaseReference
impl StructuralPartialEq for ReleaseReference
Auto Trait Implementations§
impl Freeze for ReleaseReference
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more