Struct gapi_grpc::google::cloud::datalabeling::v1beta1::OperatorMetadata[][src]

pub struct OperatorMetadata {
    pub score: f32,
    pub total_votes: i32,
    pub label_votes: i32,
    pub comments: Vec<String>,
}

General information useful for labels coming from contributors.

Fields

score: f32

Confidence score corresponding to a label. For examle, if 3 contributors have answered the question and 2 of them agree on the final label, the confidence score will be 0.67 (2/3).

total_votes: i32

The total number of contributors that answer this question.

label_votes: i32

The total number of contributors that choose this label.

comments: Vec<String>

Comments from contributors.

Trait Implementations

impl Clone for OperatorMetadata[src]

impl Debug for OperatorMetadata[src]

impl Default for OperatorMetadata[src]

impl Message for OperatorMetadata[src]

impl PartialEq<OperatorMetadata> for OperatorMetadata[src]

impl StructuralPartialEq for OperatorMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for OperatorMetadata

impl Send for OperatorMetadata

impl Sync for OperatorMetadata

impl Unpin for OperatorMetadata

impl UnwindSafe for OperatorMetadata

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]