pub struct AppSpecJobsItemImageDeployOnPush {
pub enabled: Option<bool>,
}Expand description
AppSpecJobsItemImageDeployOnPush
JSON schema
{
"type": "object",
"properties": {
"enabled": {
"description": "Whether to automatically deploy new images. Can only be used for images hosted in DOCR and can only be used with an image tag, not a specific digest.",
"examples": [
true
],
"type": "boolean"
}
}
}Fields§
§enabled: Option<bool>Whether to automatically deploy new images. Can only be used for images hosted in DOCR and can only be used with an image tag, not a specific digest.
Trait Implementations§
Source§impl Clone for AppSpecJobsItemImageDeployOnPush
impl Clone for AppSpecJobsItemImageDeployOnPush
Source§fn clone(&self) -> AppSpecJobsItemImageDeployOnPush
fn clone(&self) -> AppSpecJobsItemImageDeployOnPush
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<'de> Deserialize<'de> for AppSpecJobsItemImageDeployOnPush
impl<'de> Deserialize<'de> for AppSpecJobsItemImageDeployOnPush
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 From<&AppSpecJobsItemImageDeployOnPush> for AppSpecJobsItemImageDeployOnPush
impl From<&AppSpecJobsItemImageDeployOnPush> for AppSpecJobsItemImageDeployOnPush
Source§fn from(value: &AppSpecJobsItemImageDeployOnPush) -> Self
fn from(value: &AppSpecJobsItemImageDeployOnPush) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppSpecJobsItemImageDeployOnPush
impl RefUnwindSafe for AppSpecJobsItemImageDeployOnPush
impl Send for AppSpecJobsItemImageDeployOnPush
impl Sync for AppSpecJobsItemImageDeployOnPush
impl Unpin for AppSpecJobsItemImageDeployOnPush
impl UnsafeUnpin for AppSpecJobsItemImageDeployOnPush
impl UnwindSafe for AppSpecJobsItemImageDeployOnPush
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