pub enum DeployStrategy {
Error,
Try,
Force,
}
Expand description
Strategy for deploying
Variants§
Trait Implementations§
source§impl Clone for DeployStrategy
impl Clone for DeployStrategy
source§fn clone(&self) -> DeployStrategy
fn clone(&self) -> DeployStrategy
Returns a copy of the value. Read more
1.0.0 · 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 DeployStrategy
impl Debug for DeployStrategy
source§impl PartialEq for DeployStrategy
impl PartialEq for DeployStrategy
source§fn eq(&self, other: &DeployStrategy) -> bool
fn eq(&self, other: &DeployStrategy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DeployStrategy
impl Eq for DeployStrategy
impl StructuralPartialEq for DeployStrategy
Auto Trait Implementations§
impl RefUnwindSafe for DeployStrategy
impl Send for DeployStrategy
impl Sync for DeployStrategy
impl Unpin for DeployStrategy
impl UnwindSafe for DeployStrategy
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moresource§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