Struct gapi_grpc::google::cloud::automl::v1beta1::Row[][src]

pub struct Row {
    pub column_spec_ids: Vec<String>,
    pub values: Vec<Value>,
}

A representation of a row in a relational table.

Fields

column_spec_ids: Vec<String>

The resource IDs of the column specs describing the columns of the row. If set must contain, but possibly in a different order, all input feature

[column_spec_ids][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs] of the Model this row is being passed to. Note: The below values field must match order of this field, if this field is set.

values: Vec<Value>

Required. The values of the row cells, given in the same order as the column_spec_ids, or, if not set, then in the same order as input feature

[column_specs][google.cloud.automl.v1beta1.TablesModelMetadata.input_feature_column_specs] of the Model this row is being passed to.

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