pub struct RunArtifact {Show 14 fields
pub id: String,
pub run_id: String,
pub asset_id: Option<String>,
pub task_id: String,
pub filename: String,
pub content_type: Option<String>,
pub produced_by: Option<String>,
pub consumed_from: Option<Vec<String>>,
pub metadata: Option<Value>,
pub artifact_type: String,
pub variant_index: i16,
pub created_at: Option<String>,
pub download_url: Option<String>,
pub download_url_expires_at: Option<String>,
}Expand description
Artifact produced by a workflow run.
Fields§
§id: String§run_id: String§asset_id: Option<String>§task_id: String§filename: String§content_type: Option<String>§produced_by: Option<String>§consumed_from: Option<Vec<String>>§metadata: Option<Value>§artifact_type: String§variant_index: i16Variant (0-indexed) that produced this artifact.
created_at: Option<String>§download_url: Option<String>§download_url_expires_at: Option<String>Trait Implementations§
Source§impl Clone for RunArtifact
impl Clone for RunArtifact
Source§fn clone(&self) -> RunArtifact
fn clone(&self) -> RunArtifact
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 RunArtifact
impl Debug for RunArtifact
Source§impl<'de> Deserialize<'de> for RunArtifact
impl<'de> Deserialize<'de> for RunArtifact
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
Auto Trait Implementations§
impl Freeze for RunArtifact
impl RefUnwindSafe for RunArtifact
impl Send for RunArtifact
impl Sync for RunArtifact
impl Unpin for RunArtifact
impl UnsafeUnpin for RunArtifact
impl UnwindSafe for RunArtifact
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