pub struct ReleaseRow {
pub environment: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub released_at: Option<String>,
pub status: Option<String>,
pub version: Option<String>,
}Fields§
§environment: Option<String>Environment is the deploy target the application names.
id: Option<String>ID is the deployment’s id — a release IS a deployment that reached the cluster.
name: Option<String>Name is the application the release belongs to.
released_at: Option<String>ReleasedAt is when the deployment last changed, RFC3339 UTC.
status: Option<String>Status is deploying or live — the two states that mean released.
version: Option<String>Version is the released image tag, or v
Implementations§
Source§impl ReleaseRow
impl ReleaseRow
pub fn new() -> ReleaseRow
Trait Implementations§
Source§impl Clone for ReleaseRow
impl Clone for ReleaseRow
Source§fn clone(&self) -> ReleaseRow
fn clone(&self) -> ReleaseRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReleaseRow
impl Debug for ReleaseRow
Source§impl Default for ReleaseRow
impl Default for ReleaseRow
Source§fn default() -> ReleaseRow
fn default() -> ReleaseRow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseRow
impl<'de> Deserialize<'de> for ReleaseRow
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 ReleaseRow
impl PartialEq for ReleaseRow
Source§impl Serialize for ReleaseRow
impl Serialize for ReleaseRow
impl StructuralPartialEq for ReleaseRow
Auto Trait Implementations§
impl Freeze for ReleaseRow
impl RefUnwindSafe for ReleaseRow
impl Send for ReleaseRow
impl Sync for ReleaseRow
impl Unpin for ReleaseRow
impl UnsafeUnpin for ReleaseRow
impl UnwindSafe for ReleaseRow
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