pub struct AppSpecWorkersItemImageDeployOnPush {
pub enabled: Option<bool>,
}Expand description
AppSpecWorkersItemImageDeployOnPush
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 AppSpecWorkersItemImageDeployOnPush
impl Clone for AppSpecWorkersItemImageDeployOnPush
Source§fn clone(&self) -> AppSpecWorkersItemImageDeployOnPush
fn clone(&self) -> AppSpecWorkersItemImageDeployOnPush
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 AppSpecWorkersItemImageDeployOnPush
impl<'de> Deserialize<'de> for AppSpecWorkersItemImageDeployOnPush
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<&AppSpecWorkersItemImageDeployOnPush> for AppSpecWorkersItemImageDeployOnPush
impl From<&AppSpecWorkersItemImageDeployOnPush> for AppSpecWorkersItemImageDeployOnPush
Source§fn from(value: &AppSpecWorkersItemImageDeployOnPush) -> Self
fn from(value: &AppSpecWorkersItemImageDeployOnPush) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppSpecWorkersItemImageDeployOnPush
impl RefUnwindSafe for AppSpecWorkersItemImageDeployOnPush
impl Send for AppSpecWorkersItemImageDeployOnPush
impl Sync for AppSpecWorkersItemImageDeployOnPush
impl Unpin for AppSpecWorkersItemImageDeployOnPush
impl UnsafeUnpin for AppSpecWorkersItemImageDeployOnPush
impl UnwindSafe for AppSpecWorkersItemImageDeployOnPush
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