pub struct DeployLockFile {
pub hash: String,
pub generated_at: String,
pub env: String,
pub target: String,
pub git_sha: Option<String>,
pub version: Option<String>,
pub images: BTreeMap<String, DeployLockImage>,
}Fields§
§hash: String§generated_at: String§env: String§target: String§git_sha: Option<String>§version: Option<String>§images: BTreeMap<String, DeployLockImage>Trait Implementations§
Source§impl Clone for DeployLockFile
impl Clone for DeployLockFile
Source§fn clone(&self) -> DeployLockFile
fn clone(&self) -> DeployLockFile
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 DeployLockFile
impl Debug for DeployLockFile
Source§impl Default for DeployLockFile
impl Default for DeployLockFile
Source§fn default() -> DeployLockFile
fn default() -> DeployLockFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployLockFile
impl<'de> Deserialize<'de> for DeployLockFile
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
impl Eq for DeployLockFile
Source§impl PartialEq for DeployLockFile
impl PartialEq for DeployLockFile
Source§impl Serialize for DeployLockFile
impl Serialize for DeployLockFile
impl StructuralPartialEq for DeployLockFile
Auto Trait Implementations§
impl Freeze for DeployLockFile
impl RefUnwindSafe for DeployLockFile
impl Send for DeployLockFile
impl Sync for DeployLockFile
impl Unpin for DeployLockFile
impl UnsafeUnpin for DeployLockFile
impl UnwindSafe for DeployLockFile
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