pub struct Artifact {
pub artifact_id: String,
pub run_id: String,
pub step_id: Option<String>,
pub name: String,
pub blob_hash: String,
pub blob_ref: String,
pub metadata: State,
pub created_at: f64,
}Fields§
§artifact_id: String§run_id: String§step_id: Option<String>§name: String§blob_hash: String§blob_ref: String§metadata: State§created_at: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Artifact
impl RefUnwindSafe for Artifact
impl Send for Artifact
impl Sync for Artifact
impl Unpin for Artifact
impl UnsafeUnpin for Artifact
impl UnwindSafe for Artifact
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