pub struct Artifact {
pub slug: String,
pub hurl_text: String,
pub map: SidecarMap,
pub vars: Option<String>,
}Expand description
One scenario’s emitted artifact set.
Fields§
§slug: StringFile-safe artifact name: <feature-stem>--<scenario-slug>.
hurl_text: StringThe canonical .hurl text — the executed input (ADR-0010).
map: SidecarMapThe sidecar map (<slug>.map.json).
vars: Option<String><slug>.vars content, when globals or secrets are referenced.
Trait 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