pub enum PackageOutput {
Zone {
intermediate_only: bool,
},
Tarball,
}Expand description
Describes the output format of the package.
Variants§
Zone
Fields
A complete zone image, ready to be deployed to the target.
Tarball
A tarball, ready to be deployed to the target.
Trait Implementations§
source§impl Clone for PackageOutput
impl Clone for PackageOutput
source§fn clone(&self) -> PackageOutput
fn clone(&self) -> PackageOutput
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 PackageOutput
impl Debug for PackageOutput
source§impl<'de> Deserialize<'de> for PackageOutput
impl<'de> Deserialize<'de> for PackageOutput
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
source§impl PartialEq for PackageOutput
impl PartialEq for PackageOutput
source§fn eq(&self, other: &PackageOutput) -> bool
fn eq(&self, other: &PackageOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PackageOutput
Auto Trait Implementations§
impl RefUnwindSafe for PackageOutput
impl Send for PackageOutput
impl Sync for PackageOutput
impl Unpin for PackageOutput
impl UnwindSafe for PackageOutput
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