pub struct FleetArtifactRef {
pub kind: FleetArtifactKind,
pub path: PathBuf,
pub checksum: Option<String>,
pub mime_type: Option<String>,
pub size_bytes: Option<u64>,
}Expand description
Reference to an artifact produced or consumed by a task.
Fields§
§kind: FleetArtifactKind§path: PathBuf§checksum: Option<String>§mime_type: Option<String>§size_bytes: Option<u64>Trait Implementations§
Source§impl Clone for FleetArtifactRef
impl Clone for FleetArtifactRef
Source§fn clone(&self) -> FleetArtifactRef
fn clone(&self) -> FleetArtifactRef
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 FleetArtifactRef
impl Debug for FleetArtifactRef
Source§impl<'de> Deserialize<'de> for FleetArtifactRef
impl<'de> Deserialize<'de> for FleetArtifactRef
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 FleetArtifactRef
Source§impl PartialEq for FleetArtifactRef
impl PartialEq for FleetArtifactRef
Source§fn eq(&self, other: &FleetArtifactRef) -> bool
fn eq(&self, other: &FleetArtifactRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetArtifactRef
impl Serialize for FleetArtifactRef
impl StructuralPartialEq for FleetArtifactRef
Auto Trait Implementations§
impl Freeze for FleetArtifactRef
impl RefUnwindSafe for FleetArtifactRef
impl Send for FleetArtifactRef
impl Sync for FleetArtifactRef
impl Unpin for FleetArtifactRef
impl UnsafeUnpin for FleetArtifactRef
impl UnwindSafe for FleetArtifactRef
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