Struct s3_algo::Config [−][src]
pub struct Config {
pub copy_parallelization: usize,
pub algorithm: AlgorithmConfig,
pub delete_requests: SpecificTimings,
pub put_requests: SpecificTimings,
}
Fields
copy_parallelization: usize
Maximum number of simultaneous upload requests
algorithm: AlgorithmConfig
delete_requests: SpecificTimings
put_requests: SpecificTimings
NOTE: For now, put_request
is used both in S3 get
, put
and copy
operations.
Reason: We don’t know if it’s worth it with different configurations for these operations
that all have a duration that depends on the number of bytes of the objects in question.
Trait Implementations
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 RefUnwindSafe for Config
impl UnwindSafe for Config
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self