[][src]Struct gcp_client::google::cloud::datalabeling::v1beta1::confusion_matrix::Row

pub struct Row {
    pub annotation_spec: Option<AnnotationSpec>,
    pub entries: Vec<ConfusionMatrixEntry>,
}

A row in the confusion matrix. Each entry in this row has the same ground truth label.

Fields

annotation_spec: Option<AnnotationSpec>

The annotation spec of the ground truth label for this row.

entries: Vec<ConfusionMatrixEntry>

A list of the confusion matrix entries. One entry for each possible predicted label.

Trait Implementations

impl Clone for Row[src]

impl Debug for Row[src]

impl Default for Row[src]

impl Message for Row[src]

impl PartialEq<Row> for Row[src]

impl StructuralPartialEq for Row[src]

Auto Trait Implementations

impl RefUnwindSafe for Row

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl UnwindSafe for Row

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, 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>, 

impl<T> WithSubscriber for T[src]