pub struct ServiceDeployDestinationView {
pub provider: Option<String>,
pub worker: Option<String>,
pub rollout: Option<String>,
pub enabled: Option<bool>,
}Expand description
One named deploy destination under services[].deploy.destinations.<name>.
Fields§
§provider: Option<String>Engine provider (defaults to destination name mapping, e.g. cloudflare → cloudflare-containers).
worker: Option<String>§rollout: Option<String>§enabled: Option<bool>When false, destination is ignored unless explicitly selected with --to.
Trait Implementations§
Source§impl Clone for ServiceDeployDestinationView
impl Clone for ServiceDeployDestinationView
Source§fn clone(&self) -> ServiceDeployDestinationView
fn clone(&self) -> ServiceDeployDestinationView
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 ServiceDeployDestinationView
impl Debug for ServiceDeployDestinationView
Source§impl Default for ServiceDeployDestinationView
impl Default for ServiceDeployDestinationView
Source§fn default() -> ServiceDeployDestinationView
fn default() -> ServiceDeployDestinationView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceDeployDestinationView
impl<'de> Deserialize<'de> for ServiceDeployDestinationView
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 ServiceDeployDestinationView
impl RefUnwindSafe for ServiceDeployDestinationView
impl Send for ServiceDeployDestinationView
impl Sync for ServiceDeployDestinationView
impl Unpin for ServiceDeployDestinationView
impl UnsafeUnpin for ServiceDeployDestinationView
impl UnwindSafe for ServiceDeployDestinationView
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