pub struct HandoffArtifact {
pub id: String,
pub lane_id: String,
pub from_role: String,
pub to_role: String,
pub kind: String,
pub payload: String,
pub created_at: String,
}Expand description
Lane-scoped handoff artifact produced by a role for the next role.
Fields§
§id: String§lane_id: String§from_role: StringProducing fleet role (e.g. scout).
to_role: StringConsuming fleet role (e.g. implementer).
kind: StringArtifact kind (findings, diff, verify_report, …).
payload: StringOpaque payload (JSON text or path reference).
created_at: StringTrait Implementations§
Source§impl Clone for HandoffArtifact
impl Clone for HandoffArtifact
Source§fn clone(&self) -> HandoffArtifact
fn clone(&self) -> HandoffArtifact
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 HandoffArtifact
impl Debug for HandoffArtifact
Source§impl<'de> Deserialize<'de> for HandoffArtifact
impl<'de> Deserialize<'de> for HandoffArtifact
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 HandoffArtifact
Source§impl PartialEq for HandoffArtifact
impl PartialEq for HandoffArtifact
Source§impl Serialize for HandoffArtifact
impl Serialize for HandoffArtifact
impl StructuralPartialEq for HandoffArtifact
Auto Trait Implementations§
impl Freeze for HandoffArtifact
impl RefUnwindSafe for HandoffArtifact
impl Send for HandoffArtifact
impl Sync for HandoffArtifact
impl Unpin for HandoffArtifact
impl UnsafeUnpin for HandoffArtifact
impl UnwindSafe for HandoffArtifact
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