pub struct TaskClassification {
pub task_type: TaskType,
pub confidence: f64,
pub targets: Vec<String>,
pub keywords: Vec<String>,
}Fields§
§task_type: TaskType§confidence: f64§targets: Vec<String>§keywords: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskClassification
impl RefUnwindSafe for TaskClassification
impl Send for TaskClassification
impl Sync for TaskClassification
impl Unpin for TaskClassification
impl UnsafeUnpin for TaskClassification
impl UnwindSafe for TaskClassification
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