Struct gapi_grpc::google::cloud::dataqna::v1alpha::InterpretationStructure[][src]

pub struct InterpretationStructure {
    pub visualization_types: Vec<i32>,
    pub column_info: Vec<ColumnInfo>,
}

Information about the interpretation structure that helps to understand and visualize the response.

Fields

visualization_types: Vec<i32>

List of possible visualization types to apply for this interpretation. The order has no relevance.

column_info: Vec<ColumnInfo>

Information about the output columns, that is, the columns that will be returned by the backend.

Implementations

impl InterpretationStructure[src]

pub fn visualization_types(
    &self
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<VisualizationType>>
[src]

Returns an iterator which yields the valid enum values contained in visualization_types.

pub fn push_visualization_types(&mut self, value: VisualizationType)[src]

Appends the provided enum value to visualization_types.

Trait Implementations

impl Clone for InterpretationStructure[src]

impl Debug for InterpretationStructure[src]

impl Default for InterpretationStructure[src]

impl Message for InterpretationStructure[src]

impl PartialEq<InterpretationStructure> for InterpretationStructure[src]

impl StructuralPartialEq for InterpretationStructure[src]

Auto Trait Implementations

impl RefUnwindSafe for InterpretationStructure

impl Send for InterpretationStructure

impl Sync for InterpretationStructure

impl Unpin for InterpretationStructure

impl UnwindSafe for InterpretationStructure

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]