pub struct OcrTableObject {
pub id: String,
pub content: String,
pub format: Format,
}Fields§
§id: StringTable ID for extracted table in a page
content: StringContent of the table in the given format
format: FormatFormat of the table
Implementations§
Trait Implementations§
Source§impl Clone for OcrTableObject
impl Clone for OcrTableObject
Source§fn clone(&self) -> OcrTableObject
fn clone(&self) -> OcrTableObject
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 Debug for OcrTableObject
impl Debug for OcrTableObject
Source§impl Default for OcrTableObject
impl Default for OcrTableObject
Source§fn default() -> OcrTableObject
fn default() -> OcrTableObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OcrTableObject
impl<'de> Deserialize<'de> for OcrTableObject
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 OcrTableObject
impl PartialEq for OcrTableObject
Source§impl Serialize for OcrTableObject
impl Serialize for OcrTableObject
impl StructuralPartialEq for OcrTableObject
Auto Trait Implementations§
impl Freeze for OcrTableObject
impl RefUnwindSafe for OcrTableObject
impl Send for OcrTableObject
impl Sync for OcrTableObject
impl Unpin for OcrTableObject
impl UnsafeUnpin for OcrTableObject
impl UnwindSafe for OcrTableObject
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