pub struct LibraryIngestJobResponse {
pub job_id: Uuid,
pub group_key: String,
pub group_path: String,
pub visibility: Visibility,
pub file_id: Uuid,
pub status: LibraryIngestStatus,
pub docling_task_id: Option<String>,
pub error_message: Option<String>,
pub created_at: DateTime<Utc>,
pub started_at: Option<DateTime<Utc>>,
pub finished_at: Option<DateTime<Utc>>,
pub updated_at: DateTime<Utc>,
}Fields§
§job_id: Uuid§group_key: String§group_path: String§visibility: Visibility§file_id: Uuid§status: LibraryIngestStatus§docling_task_id: Option<String>§error_message: Option<String>§created_at: DateTime<Utc>§started_at: Option<DateTime<Utc>>§finished_at: Option<DateTime<Utc>>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for LibraryIngestJobResponse
impl Clone for LibraryIngestJobResponse
Source§fn clone(&self) -> LibraryIngestJobResponse
fn clone(&self) -> LibraryIngestJobResponse
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 ComposeSchema for LibraryIngestJobResponse
impl ComposeSchema for LibraryIngestJobResponse
Source§impl Debug for LibraryIngestJobResponse
impl Debug for LibraryIngestJobResponse
Source§impl<'de> Deserialize<'de> for LibraryIngestJobResponse
impl<'de> Deserialize<'de> for LibraryIngestJobResponse
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 Serialize for LibraryIngestJobResponse
impl Serialize for LibraryIngestJobResponse
Auto Trait Implementations§
impl Freeze for LibraryIngestJobResponse
impl RefUnwindSafe for LibraryIngestJobResponse
impl Send for LibraryIngestJobResponse
impl Sync for LibraryIngestJobResponse
impl Unpin for LibraryIngestJobResponse
impl UnsafeUnpin for LibraryIngestJobResponse
impl UnwindSafe for LibraryIngestJobResponse
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