pub struct AgentSkillReport {
pub agent_id: String,
pub skill_id: String,
pub result: SkillResult,
pub score: Option<f64>,
}Fields§
§agent_id: String§skill_id: String§result: SkillResult§score: Option<f64>Trait Implementations§
Source§impl Clone for AgentSkillReport
impl Clone for AgentSkillReport
Source§fn clone(&self) -> AgentSkillReport
fn clone(&self) -> AgentSkillReport
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentSkillReport
impl Debug for AgentSkillReport
Source§impl<'de> Deserialize<'de> for AgentSkillReport
impl<'de> Deserialize<'de> for AgentSkillReport
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
Auto Trait Implementations§
impl Freeze for AgentSkillReport
impl RefUnwindSafe for AgentSkillReport
impl Send for AgentSkillReport
impl Sync for AgentSkillReport
impl Unpin for AgentSkillReport
impl UnsafeUnpin for AgentSkillReport
impl UnwindSafe for AgentSkillReport
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