pub struct DeploymentRecord {Show 14 fields
pub id: String,
pub workspace_id: String,
pub environment: String,
pub agent_name: String,
pub version: String,
pub status: DeploymentStatusValue,
pub strategy: DeploymentStrategyKind,
pub rollout_phase: String,
pub endpoint_url: String,
pub checksum_sha256: String,
pub source_kind: String,
pub source_reference: Option<String>,
pub created_at: String,
pub manifest: DeploymentManifest,
}Fields§
§id: String§workspace_id: String§environment: String§agent_name: String§version: String§status: DeploymentStatusValue§strategy: DeploymentStrategyKind§rollout_phase: String§endpoint_url: String§checksum_sha256: String§source_kind: String§source_reference: Option<String>§created_at: String§manifest: DeploymentManifestTrait Implementations§
Source§impl Clone for DeploymentRecord
impl Clone for DeploymentRecord
Source§fn clone(&self) -> DeploymentRecord
fn clone(&self) -> DeploymentRecord
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 DeploymentRecord
impl Debug for DeploymentRecord
Source§impl<'de> Deserialize<'de> for DeploymentRecord
impl<'de> Deserialize<'de> for DeploymentRecord
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 DeploymentRecord
impl PartialEq for DeploymentRecord
Source§impl Serialize for DeploymentRecord
impl Serialize for DeploymentRecord
impl Eq for DeploymentRecord
impl StructuralPartialEq for DeploymentRecord
Auto Trait Implementations§
impl Freeze for DeploymentRecord
impl RefUnwindSafe for DeploymentRecord
impl Send for DeploymentRecord
impl Sync for DeploymentRecord
impl Unpin for DeploymentRecord
impl UnsafeUnpin for DeploymentRecord
impl UnwindSafe for DeploymentRecord
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.