pub struct ReleaseInfo {
pub release_id: String,
pub version: Option<String>,
pub description: Option<String>,
pub stack: Stack,
}Expand description
Release metadata
Identifies a specific release version and includes the stack definition. The deployment engine uses this to track which release is currently deployed and which is the target.
Fields§
§release_id: StringRelease ID (e.g., rel_xyz)
version: Option<String>Version string (e.g., 2.1.0)
description: Option<String>Short description of the release
stack: StackStack definition for this release
Trait Implementations§
Source§impl Clone for ReleaseInfo
impl Clone for ReleaseInfo
Source§fn clone(&self) -> ReleaseInfo
fn clone(&self) -> ReleaseInfo
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 ReleaseInfo
impl Debug for ReleaseInfo
Source§impl<'de> Deserialize<'de> for ReleaseInfo
impl<'de> Deserialize<'de> for ReleaseInfo
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 ReleaseInfo
impl PartialEq for ReleaseInfo
Source§impl Serialize for ReleaseInfo
impl Serialize for ReleaseInfo
impl Eq for ReleaseInfo
impl StructuralPartialEq for ReleaseInfo
Auto Trait Implementations§
impl Freeze for ReleaseInfo
impl !RefUnwindSafe for ReleaseInfo
impl Send for ReleaseInfo
impl Sync for ReleaseInfo
impl Unpin for ReleaseInfo
impl UnsafeUnpin for ReleaseInfo
impl !UnwindSafe for ReleaseInfo
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.