pub struct PreparedSkillRunReport {
pub schema: String,
pub status: PreparedSkillRunStatus,
pub digest: String,
pub request: PreparedRequestSummary,
pub governance: PreparedGovernanceSummary,
pub chain: Option<SkillOperatorContextChain>,
pub trace: Vec<PreparedTraceEntry>,
pub blocked_reason: Option<String>,
}Fields§
§schema: String§status: PreparedSkillRunStatus§digest: String§request: PreparedRequestSummary§governance: PreparedGovernanceSummary§chain: Option<SkillOperatorContextChain>§trace: Vec<PreparedTraceEntry>§blocked_reason: Option<String>Trait Implementations§
Source§impl Clone for PreparedSkillRunReport
impl Clone for PreparedSkillRunReport
Source§fn clone(&self) -> PreparedSkillRunReport
fn clone(&self) -> PreparedSkillRunReport
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 PreparedSkillRunReport
impl Debug for PreparedSkillRunReport
Source§impl<'de> Deserialize<'de> for PreparedSkillRunReport
impl<'de> Deserialize<'de> for PreparedSkillRunReport
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
Source§impl PartialEq for PreparedSkillRunReport
impl PartialEq for PreparedSkillRunReport
Source§impl Serialize for PreparedSkillRunReport
impl Serialize for PreparedSkillRunReport
impl StructuralPartialEq for PreparedSkillRunReport
Auto Trait Implementations§
impl Freeze for PreparedSkillRunReport
impl RefUnwindSafe for PreparedSkillRunReport
impl Send for PreparedSkillRunReport
impl Sync for PreparedSkillRunReport
impl Unpin for PreparedSkillRunReport
impl UnsafeUnpin for PreparedSkillRunReport
impl UnwindSafe for PreparedSkillRunReport
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