pub struct LibraryUrlImportJobResponse {Show 13 fields
pub import_job_id: Uuid,
pub group_path: String,
pub source_url: String,
pub status: LibraryUrlImportStatus,
pub attempt_count: i32,
pub file: Option<LibraryFileSummary>,
pub ingest_job: Option<LibraryIngestJobResponse>,
pub error_code: 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§
§import_job_id: Uuid§group_path: String§source_url: String§status: LibraryUrlImportStatus§attempt_count: i32§file: Option<LibraryFileSummary>§ingest_job: Option<LibraryIngestJobResponse>§error_code: 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 LibraryUrlImportJobResponse
impl Clone for LibraryUrlImportJobResponse
Source§fn clone(&self) -> LibraryUrlImportJobResponse
fn clone(&self) -> LibraryUrlImportJobResponse
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 LibraryUrlImportJobResponse
impl ComposeSchema for LibraryUrlImportJobResponse
Source§impl Debug for LibraryUrlImportJobResponse
impl Debug for LibraryUrlImportJobResponse
Source§impl<'de> Deserialize<'de> for LibraryUrlImportJobResponse
impl<'de> Deserialize<'de> for LibraryUrlImportJobResponse
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 LibraryUrlImportJobResponse
impl RefUnwindSafe for LibraryUrlImportJobResponse
impl Send for LibraryUrlImportJobResponse
impl Sync for LibraryUrlImportJobResponse
impl Unpin for LibraryUrlImportJobResponse
impl UnsafeUnpin for LibraryUrlImportJobResponse
impl UnwindSafe for LibraryUrlImportJobResponse
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