pub struct LibraryProcessingJobRetryRequest {
pub dry_run: bool,
pub failure_stage: Option<LibraryIngestFailureStage>,
pub error_filter: Option<String>,
pub limit: u32,
pub batch_size: u32,
pub rate_limit_ms: u64,
}Fields§
§dry_run: bool§failure_stage: Option<LibraryIngestFailureStage>§error_filter: Option<String>§limit: u32§batch_size: u32§rate_limit_ms: u64Trait Implementations§
Source§impl Clone for LibraryProcessingJobRetryRequest
impl Clone for LibraryProcessingJobRetryRequest
Source§fn clone(&self) -> LibraryProcessingJobRetryRequest
fn clone(&self) -> LibraryProcessingJobRetryRequest
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 LibraryProcessingJobRetryRequest
impl ComposeSchema for LibraryProcessingJobRetryRequest
Source§impl<'de> Deserialize<'de> for LibraryProcessingJobRetryRequest
impl<'de> Deserialize<'de> for LibraryProcessingJobRetryRequest
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 LibraryProcessingJobRetryRequest
impl RefUnwindSafe for LibraryProcessingJobRetryRequest
impl Send for LibraryProcessingJobRetryRequest
impl Sync for LibraryProcessingJobRetryRequest
impl Unpin for LibraryProcessingJobRetryRequest
impl UnsafeUnpin for LibraryProcessingJobRetryRequest
impl UnwindSafe for LibraryProcessingJobRetryRequest
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