pub struct Deployment {Show 14 fields
pub id: Uuid,
pub created_at: DateTime<Utc>,
pub name: String,
pub kind_id: Uuid,
pub cluster_id: Uuid,
pub enabled: bool,
pub status: DeploymentStatus,
pub description_md: Option<String>,
pub reason: Option<String>,
pub revision_id: Option<Uuid>,
pub reported_status: Option<Value>,
pub helm_chart_id: Uuid,
pub config: Value,
pub values_override: Option<Value>,
}
Fields§
§id: Uuid
§created_at: DateTime<Utc>
§name: String
§kind_id: Uuid
§cluster_id: Uuid
§enabled: bool
§status: DeploymentStatus
§description_md: Option<String>
§reason: Option<String>
§revision_id: Option<Uuid>
§reported_status: Option<Value>
§helm_chart_id: Uuid
§config: Value
§values_override: Option<Value>
Trait Implementations§
Source§impl Clone for Deployment
impl Clone for Deployment
Source§fn clone(&self) -> Deployment
fn clone(&self) -> Deployment
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 Deployment
impl Debug for Deployment
Source§impl<'de> Deserialize<'de> for Deployment
impl<'de> Deserialize<'de> for Deployment
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
Auto Trait Implementations§
impl Freeze for Deployment
impl RefUnwindSafe for Deployment
impl Send for Deployment
impl Sync for Deployment
impl Unpin for Deployment
impl UnwindSafe for Deployment
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