pub struct SkillQuery {
pub task: String,
pub context: AgentContext,
pub limit: usize,
pub threshold: f64,
}Fields§
§task: String§context: AgentContext§limit: usize§threshold: f64Trait Implementations§
Source§impl Clone for SkillQuery
impl Clone for SkillQuery
Source§fn clone(&self) -> SkillQuery
fn clone(&self) -> SkillQuery
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 SkillQuery
impl Debug for SkillQuery
Source§impl Default for SkillQuery
impl Default for SkillQuery
Source§impl<'de> Deserialize<'de> for SkillQuery
impl<'de> Deserialize<'de> for SkillQuery
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 SkillQuery
impl RefUnwindSafe for SkillQuery
impl Send for SkillQuery
impl Sync for SkillQuery
impl Unpin for SkillQuery
impl UnsafeUnpin for SkillQuery
impl UnwindSafe for SkillQuery
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