pub struct OCRContent {
pub frame_id: i64,
pub text: String,
pub timestamp: DateTime<Utc>,
pub file_path: String,
pub offset_index: i32,
pub app_name: String,
pub window_name: String,
pub tags: Vec<String>,
pub frame: Option<String>,
}
Fields§
§frame_id: i64
§text: String
§timestamp: DateTime<Utc>
§file_path: String
§offset_index: i32
§app_name: String
§window_name: String
§frame: Option<String>
Trait Implementations§
Source§impl Debug for OCRContent
impl Debug for OCRContent
Source§impl<'de> Deserialize<'de> for OCRContent
impl<'de> Deserialize<'de> for OCRContent
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 OCRContent
impl RefUnwindSafe for OCRContent
impl Send for OCRContent
impl Sync for OCRContent
impl Unpin for OCRContent
impl UnwindSafe for OCRContent
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