pub struct Act {Show 16 fields
pub schema: Option<ActSchema>,
pub act_id: NonEmptyString,
pub form: ActForm,
pub intent: Intent,
pub summary: NonEmptyString,
pub closure: Closure,
pub criterion_bindings: Vec<CriterionBinding>,
pub source_refs: Vec<Reference>,
pub target_refs: Vec<Reference>,
pub surface_refs: Vec<Reference>,
pub artifact_refs: Vec<Reference>,
pub verification_refs: Vec<Reference>,
pub harness_refs: Vec<Reference>,
pub revision: Option<RevisionDetails>,
pub verification: Option<VerificationDetails>,
pub performed_at: IsoDateTime,
}Fields§
§schema: Option<ActSchema>§act_id: NonEmptyString§form: ActForm§intent: Intent§summary: NonEmptyString§closure: Closure§criterion_bindings: Vec<CriterionBinding>§source_refs: Vec<Reference>§target_refs: Vec<Reference>§surface_refs: Vec<Reference>§artifact_refs: Vec<Reference>§verification_refs: Vec<Reference>§harness_refs: Vec<Reference>§revision: Option<RevisionDetails>§verification: Option<VerificationDetails>§performed_at: IsoDateTimeTrait Implementations§
Source§impl<'de> Deserialize<'de> for Act
impl<'de> Deserialize<'de> for Act
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 Act
Source§impl RunxSchema for Act
impl RunxSchema for Act
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
impl StructuralPartialEq for Act
Auto Trait Implementations§
impl Freeze for Act
impl RefUnwindSafe for Act
impl Send for Act
impl Sync for Act
impl Unpin for Act
impl UnsafeUnpin for Act
impl UnwindSafe for Act
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