pub enum DeploymentRequest {
BuildArchive(DeploymentRequestBuildArchive),
Image(DeploymentRequestImage),
}
Variants§
BuildArchive(DeploymentRequestBuildArchive)
Build an image from the source code in an attached zip archive
Image(DeploymentRequestImage)
Use this image directly. Can be used to skip the build step.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DeploymentRequest
impl<'de> Deserialize<'de> for DeploymentRequest
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 DeploymentRequest
impl RefUnwindSafe for DeploymentRequest
impl Send for DeploymentRequest
impl Sync for DeploymentRequest
impl Unpin for DeploymentRequest
impl UnwindSafe for DeploymentRequest
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