pub struct IngestionJobResponse {
pub job_id: u64,
pub label: String,
pub status: IngestionJobStatus,
pub total_items: Option<u64>,
pub completed_items: u64,
pub failed_items: u64,
pub last_cell_id: Option<u64>,
pub message: Option<String>,
pub retry_count: u32,
pub max_retries: u32,
}Fields§
§job_id: u64§label: String§status: IngestionJobStatus§total_items: Option<u64>§completed_items: u64§failed_items: u64§last_cell_id: Option<u64>§message: Option<String>§retry_count: u32§max_retries: u32Trait Implementations§
Source§impl Clone for IngestionJobResponse
impl Clone for IngestionJobResponse
Source§fn clone(&self) -> IngestionJobResponse
fn clone(&self) -> IngestionJobResponse
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 IngestionJobResponse
impl Debug for IngestionJobResponse
Source§impl<'de> Deserialize<'de> for IngestionJobResponse
impl<'de> Deserialize<'de> for IngestionJobResponse
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
impl Eq for IngestionJobResponse
Source§impl PartialEq for IngestionJobResponse
impl PartialEq for IngestionJobResponse
Source§fn eq(&self, other: &IngestionJobResponse) -> bool
fn eq(&self, other: &IngestionJobResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IngestionJobResponse
Auto Trait Implementations§
impl Freeze for IngestionJobResponse
impl RefUnwindSafe for IngestionJobResponse
impl Send for IngestionJobResponse
impl Sync for IngestionJobResponse
impl Unpin for IngestionJobResponse
impl UnsafeUnpin for IngestionJobResponse
impl UnwindSafe for IngestionJobResponse
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