pub struct UploadConfig {
pub max_concurrent: usize,
pub timeout_seconds: u64,
pub retry_attempts: usize,
pub large_layer_threshold: u64,
pub enable_streaming: bool,
}
Expand description
Basic upload configuration
Fields§
§max_concurrent: usize
§timeout_seconds: u64
§retry_attempts: usize
§large_layer_threshold: u64
§enable_streaming: bool
Trait Implementations§
Source§impl Clone for UploadConfig
impl Clone for UploadConfig
Source§fn clone(&self) -> UploadConfig
fn clone(&self) -> UploadConfig
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 moreSource§impl Debug for UploadConfig
impl Debug for UploadConfig
Auto Trait Implementations§
impl Freeze for UploadConfig
impl RefUnwindSafe for UploadConfig
impl Send for UploadConfig
impl Sync for UploadConfig
impl Unpin for UploadConfig
impl UnwindSafe for UploadConfig
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