pub struct StartDocumentAnalysisResponse {
pub job_id: Option<String>,
}Fields§
§job_id: Option<String>The identifier for the document text detection job. Use JobId to identify the job in a subsequent call to GetDocumentAnalysis. A JobId value is only valid for 7 days.
Trait Implementations§
Source§impl Clone for StartDocumentAnalysisResponse
impl Clone for StartDocumentAnalysisResponse
Source§fn clone(&self) -> StartDocumentAnalysisResponse
fn clone(&self) -> StartDocumentAnalysisResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for StartDocumentAnalysisResponse
impl Default for StartDocumentAnalysisResponse
Source§fn default() -> StartDocumentAnalysisResponse
fn default() -> StartDocumentAnalysisResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartDocumentAnalysisResponse
impl<'de> Deserialize<'de> for StartDocumentAnalysisResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StartDocumentAnalysisResponse
impl PartialEq for StartDocumentAnalysisResponse
Source§fn eq(&self, other: &StartDocumentAnalysisResponse) -> bool
fn eq(&self, other: &StartDocumentAnalysisResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartDocumentAnalysisResponse
Auto Trait Implementations§
impl Freeze for StartDocumentAnalysisResponse
impl RefUnwindSafe for StartDocumentAnalysisResponse
impl Send for StartDocumentAnalysisResponse
impl Sync for StartDocumentAnalysisResponse
impl Unpin for StartDocumentAnalysisResponse
impl UnwindSafe for StartDocumentAnalysisResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more