pub struct OcrImageObject {
pub id: String,
pub top_left_x: Option<i32>,
pub top_left_y: Option<i32>,
pub bottom_right_x: Option<i32>,
pub bottom_right_y: Option<i32>,
pub image_base64: Option<Option<String>>,
pub image_annotation: Option<Option<String>>,
}Fields§
§id: StringImage ID for extracted image in a page
top_left_x: Option<i32>§top_left_y: Option<i32>§bottom_right_x: Option<i32>§bottom_right_y: Option<i32>§image_base64: Option<Option<String>>§image_annotation: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl Clone for OcrImageObject
impl Clone for OcrImageObject
Source§fn clone(&self) -> OcrImageObject
fn clone(&self) -> OcrImageObject
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 OcrImageObject
impl Debug for OcrImageObject
Source§impl Default for OcrImageObject
impl Default for OcrImageObject
Source§fn default() -> OcrImageObject
fn default() -> OcrImageObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OcrImageObject
impl<'de> Deserialize<'de> for OcrImageObject
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 OcrImageObject
impl PartialEq for OcrImageObject
Source§impl Serialize for OcrImageObject
impl Serialize for OcrImageObject
impl StructuralPartialEq for OcrImageObject
Auto Trait Implementations§
impl Freeze for OcrImageObject
impl RefUnwindSafe for OcrImageObject
impl Send for OcrImageObject
impl Sync for OcrImageObject
impl Unpin for OcrImageObject
impl UnsafeUnpin for OcrImageObject
impl UnwindSafe for OcrImageObject
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