pub struct DeployMetadata {
pub name: String,
pub version: String,
pub description: Option<String>,
pub author: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
pub config_hash: Option<ContentHash>,
}
Expand description
デプロイメントメタデータ
Fields§
§name: String
デプロイメント名
version: String
バージョン
description: Option<String>
説明
作者
created_at: DateTime<Utc>
作成日時
updated_at: Option<DateTime<Utc>>
最終更新日時
config_hash: Option<ContentHash>
設定ファイルのハッシュ
Trait Implementations§
Source§impl Clone for DeployMetadata
impl Clone for DeployMetadata
Source§fn clone(&self) -> DeployMetadata
fn clone(&self) -> DeployMetadata
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 DeployMetadata
impl Debug for DeployMetadata
Source§impl<'de> Deserialize<'de> for DeployMetadata
impl<'de> Deserialize<'de> for DeployMetadata
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 DeployMetadata
impl RefUnwindSafe for DeployMetadata
impl Send for DeployMetadata
impl Sync for DeployMetadata
impl Unpin for DeployMetadata
impl UnwindSafe for DeployMetadata
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