Struct gapi_grpc::google::cloud::documentai::v1::document::entity::NormalizedValue[][src]

pub struct NormalizedValue {
    pub text: String,
    pub structured_value: Option<StructuredValue>,
}

Parsed and normalized entity value.

Fields

text: String

Required. Normalized entity value stored as a string. This field is populated for supported document type (e.g. Invoice). For some entity types, one of respective ‘structured_value’ fields may also be populated.

structured_value: Option<StructuredValue>

Structured entity value. Must match entity type defined in schema if known. If this field is present, the ‘text’ field is still populated.

Trait Implementations

impl Clone for NormalizedValue[src]

impl Debug for NormalizedValue[src]

impl Default for NormalizedValue[src]

impl Message for NormalizedValue[src]

impl PartialEq<NormalizedValue> for NormalizedValue[src]

impl StructuralPartialEq for NormalizedValue[src]

Auto Trait Implementations

impl RefUnwindSafe for NormalizedValue

impl Send for NormalizedValue

impl Sync for NormalizedValue

impl Unpin for NormalizedValue

impl UnwindSafe for NormalizedValue

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]