Struct gapi_grpc::google::cloud::documentai::v1::HumanReviewStatus[][src]

pub struct HumanReviewStatus {
    pub state: i32,
    pub state_message: String,
    pub human_review_operation: String,
}

The status of human review on a processed document.

Fields

state: i32

The state of human review on the processing request.

state_message: String

A message providing more details about the human review state.

human_review_operation: String

The name of the operation triggered by the processed document. This field is populated only when the [state] is [HUMAN_REVIEW_IN_PROGRESS]. It has the same response type and metadata as the long running operation returned by [ReviewDocument] method.

Implementations

impl HumanReviewStatus[src]

pub fn state(&self) -> State[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: State)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for HumanReviewStatus[src]

impl Debug for HumanReviewStatus[src]

impl Default for HumanReviewStatus[src]

impl Message for HumanReviewStatus[src]

impl PartialEq<HumanReviewStatus> for HumanReviewStatus[src]

impl StructuralPartialEq for HumanReviewStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for HumanReviewStatus

impl Send for HumanReviewStatus

impl Sync for HumanReviewStatus

impl Unpin for HumanReviewStatus

impl UnwindSafe for HumanReviewStatus

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]