pub struct StructuredDataResult {
pub tables: Vec<Table>,
pub key_value_pairs: Vec<KeyValuePair>,
pub column_sections: Vec<ColumnSection>,
}Expand description
Result of structured data detection.
Fields§
§tables: Vec<Table>Detected tables
key_value_pairs: Vec<KeyValuePair>Detected key-value pairs
column_sections: Vec<ColumnSection>Multi-column layout sections
Implementations§
Trait Implementations§
Source§impl Clone for StructuredDataResult
impl Clone for StructuredDataResult
Source§fn clone(&self) -> StructuredDataResult
fn clone(&self) -> StructuredDataResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StructuredDataResult
impl Debug for StructuredDataResult
Source§impl Default for StructuredDataResult
impl Default for StructuredDataResult
Source§impl<'de> Deserialize<'de> for StructuredDataResult
impl<'de> Deserialize<'de> for StructuredDataResult
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
Auto Trait Implementations§
impl Freeze for StructuredDataResult
impl RefUnwindSafe for StructuredDataResult
impl Send for StructuredDataResult
impl Sync for StructuredDataResult
impl Unpin for StructuredDataResult
impl UnsafeUnpin for StructuredDataResult
impl UnwindSafe for StructuredDataResult
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