pub struct DeployResetRequest {
pub kubernetes: bool,
pub deploy_config: bool,
pub service_deploy: bool,
pub history: bool,
pub services: Vec<String>,
pub env: Option<String>,
pub full_service_deploy: bool,
pub dry_run: bool,
pub yes: bool,
}Fields§
§kubernetes: bool§deploy_config: bool§service_deploy: bool§history: bool§services: Vec<String>When set with service_deploy, only these services (empty = all).
env: Option<String>When set, only remove this env key from services[].deploy.envs (narrow).
full_service_deploy: boolWipe entire services[].deploy even if Cloudflare is configured.
dry_run: bool§yes: boolImplementations§
Source§impl DeployResetRequest
impl DeployResetRequest
pub fn any_scope(&self) -> bool
pub fn enable_all(&mut self)
Trait Implementations§
Source§impl Clone for DeployResetRequest
impl Clone for DeployResetRequest
Source§fn clone(&self) -> DeployResetRequest
fn clone(&self) -> DeployResetRequest
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 DeployResetRequest
impl Debug for DeployResetRequest
Source§impl Default for DeployResetRequest
impl Default for DeployResetRequest
Source§fn default() -> DeployResetRequest
fn default() -> DeployResetRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeployResetRequest
impl RefUnwindSafe for DeployResetRequest
impl Send for DeployResetRequest
impl Sync for DeployResetRequest
impl Unpin for DeployResetRequest
impl UnsafeUnpin for DeployResetRequest
impl UnwindSafe for DeployResetRequest
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more