pub struct LabelAttentionResult {
pub labels: Vec<LabelAttentionScore>,
pub total_labels: usize,
pub max_score: f64,
pub min_score: f64,
}Fields§
§labels: Vec<LabelAttentionScore>§total_labels: usize§max_score: f64§min_score: f64Trait Implementations§
Source§impl Clone for LabelAttentionResult
impl Clone for LabelAttentionResult
Source§fn clone(&self) -> LabelAttentionResult
fn clone(&self) -> LabelAttentionResult
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 LabelAttentionResult
impl Debug for LabelAttentionResult
Auto Trait Implementations§
impl Freeze for LabelAttentionResult
impl RefUnwindSafe for LabelAttentionResult
impl Send for LabelAttentionResult
impl Sync for LabelAttentionResult
impl Unpin for LabelAttentionResult
impl UnsafeUnpin for LabelAttentionResult
impl UnwindSafe for LabelAttentionResult
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