pub struct DeployOptions {
pub web: Option<DeployTarget>,
pub admin: Option<DeployTarget>,
pub nc: Option<DeployTarget>,
}Fields§
§web: Option<DeployTarget>§admin: Option<DeployTarget>§nc: Option<DeployTarget>Trait Implementations§
Source§impl Clone for DeployOptions
impl Clone for DeployOptions
Source§fn clone(&self) -> DeployOptions
fn clone(&self) -> DeployOptions
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 DeployOptions
impl Debug for DeployOptions
Source§impl IntoIterator for DeployOptions
impl IntoIterator for DeployOptions
Source§type IntoIter = Flatten<IntoIter<Option<(DeployTarget, DeployTargetType)>, 3>>
type IntoIter = Flatten<IntoIter<Option<(DeployTarget, DeployTargetType)>, 3>>
Which kind of iterator are we turning this into?
Source§type Item = (DeployTarget, DeployTargetType)
type Item = (DeployTarget, DeployTargetType)
The type of the elements being iterated over.
Source§impl PartialEq for DeployOptions
impl PartialEq for DeployOptions
impl StructuralPartialEq for DeployOptions
Auto Trait Implementations§
impl Freeze for DeployOptions
impl RefUnwindSafe for DeployOptions
impl Send for DeployOptions
impl Sync for DeployOptions
impl Unpin for DeployOptions
impl UnwindSafe for DeployOptions
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