pub struct ConvertDocumentResponse {
pub document: ExportDocumentResponse,
pub status: ConversionStatus,
pub errors: Vec<DoclingErrorItem>,
pub processing_time: f64,
}Fields§
§document: ExportDocumentResponse§status: ConversionStatus§errors: Vec<DoclingErrorItem>§processing_time: f64Trait Implementations§
Source§impl Clone for ConvertDocumentResponse
impl Clone for ConvertDocumentResponse
Source§fn clone(&self) -> ConvertDocumentResponse
fn clone(&self) -> ConvertDocumentResponse
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 ConvertDocumentResponse
impl Debug for ConvertDocumentResponse
Source§impl<'de> Deserialize<'de> for ConvertDocumentResponse
impl<'de> Deserialize<'de> for ConvertDocumentResponse
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 ConvertDocumentResponse
impl RefUnwindSafe for ConvertDocumentResponse
impl Send for ConvertDocumentResponse
impl Sync for ConvertDocumentResponse
impl Unpin for ConvertDocumentResponse
impl UnsafeUnpin for ConvertDocumentResponse
impl UnwindSafe for ConvertDocumentResponse
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