Struct google_documentai1_beta2::api::ProjectMethods [−][src]
A builder providing access to all methods supported on project resources.
It is not used directly, but through the Document hub.
Example
Instantiate a resource builder
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_documentai1_beta2 as documentai1_beta2; use std::default::Default; use oauth2; use documentai1_beta2::Document; let secret: oauth2::ApplicationSecret = Default::default(); let auth = yup_oauth2::InstalledFlowAuthenticator::builder( secret, yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect, ).build().await.unwrap(); let mut hub = Document::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth); // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders* // like `documents_batch_process(...)`, `documents_process(...)`, `locations_documents_batch_process(...)`, `locations_documents_process(...)`, `locations_operations_get(...)` and `operations_get(...)` // to build up your call. let rb = hub.projects();
Implementations
impl<'a, C> ProjectMethods<'a, C>[src]
pub fn documents_batch_process(
&self,
request: GoogleCloudDocumentaiV1beta2BatchProcessDocumentsRequest,
parent: &str
) -> ProjectDocumentBatchProcesCall<'a, C>[src]
&self,
request: GoogleCloudDocumentaiV1beta2BatchProcessDocumentsRequest,
parent: &str
) -> ProjectDocumentBatchProcesCall<'a, C>
Create a builder to help you perform the following task:
LRO endpoint to batch process many documents. The output is written to Cloud Storage as JSON in the Document format.
Arguments
request- No description provided.parent- Target project and location to make a call. Format:projects/{project-id}/locations/{location-id}. If no location is specified, a region will be chosen automatically.
pub fn documents_process(
&self,
request: GoogleCloudDocumentaiV1beta2ProcessDocumentRequest,
parent: &str
) -> ProjectDocumentProcesCall<'a, C>[src]
&self,
request: GoogleCloudDocumentaiV1beta2ProcessDocumentRequest,
parent: &str
) -> ProjectDocumentProcesCall<'a, C>
Create a builder to help you perform the following task:
Processes a single document.
Arguments
request- No description provided.parent- Target project and location to make a call. Format:projects/{project-id}/locations/{location-id}. If no location is specified, a region will be chosen automatically. This field is only populated when used in ProcessDocument method.
pub fn locations_documents_batch_process(
&self,
request: GoogleCloudDocumentaiV1beta2BatchProcessDocumentsRequest,
parent: &str
) -> ProjectLocationDocumentBatchProcesCall<'a, C>[src]
&self,
request: GoogleCloudDocumentaiV1beta2BatchProcessDocumentsRequest,
parent: &str
) -> ProjectLocationDocumentBatchProcesCall<'a, C>
Create a builder to help you perform the following task:
LRO endpoint to batch process many documents. The output is written to Cloud Storage as JSON in the Document format.
Arguments
request- No description provided.parent- Target project and location to make a call. Format:projects/{project-id}/locations/{location-id}. If no location is specified, a region will be chosen automatically.
pub fn locations_documents_process(
&self,
request: GoogleCloudDocumentaiV1beta2ProcessDocumentRequest,
parent: &str
) -> ProjectLocationDocumentProcesCall<'a, C>[src]
&self,
request: GoogleCloudDocumentaiV1beta2ProcessDocumentRequest,
parent: &str
) -> ProjectLocationDocumentProcesCall<'a, C>
Create a builder to help you perform the following task:
Processes a single document.
Arguments
request- No description provided.parent- Target project and location to make a call. Format:projects/{project-id}/locations/{location-id}. If no location is specified, a region will be chosen automatically. This field is only populated when used in ProcessDocument method.
pub fn locations_operations_get(
&self,
name: &str
) -> ProjectLocationOperationGetCall<'a, C>[src]
&self,
name: &str
) -> ProjectLocationOperationGetCall<'a, C>
Create a builder to help you perform the following task:
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
Arguments
name- The name of the operation resource.
pub fn operations_get(&self, name: &str) -> ProjectOperationGetCall<'a, C>[src]
Create a builder to help you perform the following task:
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
Arguments
name- The name of the operation resource.
Trait Implementations
impl<'a, C> MethodsBuilder for ProjectMethods<'a, C>[src]
Auto Trait Implementations
impl<'a, C> !RefUnwindSafe for ProjectMethods<'a, C>[src]
impl<'a, C> !Send for ProjectMethods<'a, C>[src]
impl<'a, C> !Sync for ProjectMethods<'a, C>[src]
impl<'a, C> Unpin for ProjectMethods<'a, C>[src]
impl<'a, C> !UnwindSafe for ProjectMethods<'a, C>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,