pub enum FleetArtifactKind {
Log,
Patch,
TestResult,
Report,
Checkpoint,
Receipt,
Other(String),
}Expand description
Kind of artifact a task may produce or consume.
Variants§
Trait Implementations§
Source§impl Clone for FleetArtifactKind
impl Clone for FleetArtifactKind
Source§fn clone(&self) -> FleetArtifactKind
fn clone(&self) -> FleetArtifactKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FleetArtifactKind
impl Debug for FleetArtifactKind
Source§impl<'de> Deserialize<'de> for FleetArtifactKind
impl<'de> Deserialize<'de> for FleetArtifactKind
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
impl Eq for FleetArtifactKind
Source§impl PartialEq for FleetArtifactKind
impl PartialEq for FleetArtifactKind
Source§fn eq(&self, other: &FleetArtifactKind) -> bool
fn eq(&self, other: &FleetArtifactKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetArtifactKind
impl Serialize for FleetArtifactKind
impl StructuralPartialEq for FleetArtifactKind
Auto Trait Implementations§
impl Freeze for FleetArtifactKind
impl RefUnwindSafe for FleetArtifactKind
impl Send for FleetArtifactKind
impl Sync for FleetArtifactKind
impl Unpin for FleetArtifactKind
impl UnsafeUnpin for FleetArtifactKind
impl UnwindSafe for FleetArtifactKind
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