pub enum PackageOutput {
Zone {
intermediate_only: bool,
},
Tarball,
}Expand description
Describes the output format of the package.
Variants§
Zone
A complete zone image, ready to be deployed to the target.
Fields
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 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 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§impl Serialize for PackageOutput
impl Serialize for PackageOutput
impl StructuralPartialEq for PackageOutput
Auto Trait Implementations§
impl Freeze for PackageOutput
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