pub enum DeployOptionsError {
Parts {
web: Box<Option<DeploymentTargetOptionsError>>,
admin: Box<Option<DeploymentTargetOptionsError>>,
nc: Box<Option<DeploymentTargetOptionsError>>,
},
BadBaseType(ValueType),
}Variants§
Trait Implementations§
Source§impl Clone for DeployOptionsError
impl Clone for DeployOptionsError
Source§fn clone(&self) -> DeployOptionsError
fn clone(&self) -> DeployOptionsError
Returns a duplicate 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 DeployOptionsError
impl Debug for DeployOptionsError
Source§impl Display for DeployOptionsError
impl Display for DeployOptionsError
Source§impl PartialEq for DeployOptionsError
impl PartialEq for DeployOptionsError
impl StructuralPartialEq for DeployOptionsError
Auto Trait Implementations§
impl Freeze for DeployOptionsError
impl RefUnwindSafe for DeployOptionsError
impl Send for DeployOptionsError
impl Sync for DeployOptionsError
impl Unpin for DeployOptionsError
impl UnwindSafe for DeployOptionsError
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