pub struct PounceTask { /* private fields */ }Expand description
User-facing task input built by upload/download builders.
This type only carries request parameters. Internal runtime state is created later when the task is enqueued.
Implementations§
Source§impl PounceTask
impl PounceTask
Sourcepub const DEFAULT_MAX_CHUNK_RETRIES: u32 = 3
pub const DEFAULT_MAX_CHUNK_RETRIES: u32 = 3
Default maximum retry count per chunk transfer.
Sourcepub const DEFAULT_MAX_UPLOAD_PREPARE_RETRIES: u32 = 3
pub const DEFAULT_MAX_UPLOAD_PREPARE_RETRIES: u32 = 3
Default maximum retry count after the first failed upload prepare.
Trait Implementations§
Source§impl Clone for PounceTask
impl Clone for PounceTask
Source§fn clone(&self) -> PounceTask
fn clone(&self) -> PounceTask
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Freeze for PounceTask
impl !RefUnwindSafe for PounceTask
impl Send for PounceTask
impl Sync for PounceTask
impl Unpin for PounceTask
impl UnsafeUnpin for PounceTask
impl !UnwindSafe for PounceTask
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