pub struct GoogleCloudDocumentaiV1DocumentPageTable {
pub body_rows: Option<Vec<GoogleCloudDocumentaiV1DocumentPageTableTableRow>>,
pub detected_languages: Option<Vec<GoogleCloudDocumentaiV1DocumentPageDetectedLanguage>>,
pub header_rows: Option<Vec<GoogleCloudDocumentaiV1DocumentPageTableTableRow>>,
pub layout: Option<GoogleCloudDocumentaiV1DocumentPageLayout>,
pub provenance: Option<GoogleCloudDocumentaiV1DocumentProvenance>,
}Expand description
A table representation similar to HTML table structure.
This type is not used in any activity, and only used as part of another schema.
Fields§
§body_rows: Option<Vec<GoogleCloudDocumentaiV1DocumentPageTableTableRow>>Body rows of the table.
detected_languages: Option<Vec<GoogleCloudDocumentaiV1DocumentPageDetectedLanguage>>A list of detected languages together with confidence.
header_rows: Option<Vec<GoogleCloudDocumentaiV1DocumentPageTableTableRow>>Header rows of the table.
layout: Option<GoogleCloudDocumentaiV1DocumentPageLayout>Layout for Table.
provenance: Option<GoogleCloudDocumentaiV1DocumentProvenance>The history of this table.
Trait Implementations§
Source§impl Clone for GoogleCloudDocumentaiV1DocumentPageTable
impl Clone for GoogleCloudDocumentaiV1DocumentPageTable
Source§fn clone(&self) -> GoogleCloudDocumentaiV1DocumentPageTable
fn clone(&self) -> GoogleCloudDocumentaiV1DocumentPageTable
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 GoogleCloudDocumentaiV1DocumentPageTable
impl Default for GoogleCloudDocumentaiV1DocumentPageTable
Source§fn default() -> GoogleCloudDocumentaiV1DocumentPageTable
fn default() -> GoogleCloudDocumentaiV1DocumentPageTable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDocumentaiV1DocumentPageTable
impl<'de> Deserialize<'de> for GoogleCloudDocumentaiV1DocumentPageTable
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
impl Part for GoogleCloudDocumentaiV1DocumentPageTable
Auto Trait Implementations§
impl Freeze for GoogleCloudDocumentaiV1DocumentPageTable
impl RefUnwindSafe for GoogleCloudDocumentaiV1DocumentPageTable
impl Send for GoogleCloudDocumentaiV1DocumentPageTable
impl Sync for GoogleCloudDocumentaiV1DocumentPageTable
impl Unpin for GoogleCloudDocumentaiV1DocumentPageTable
impl UnwindSafe for GoogleCloudDocumentaiV1DocumentPageTable
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