pub type FuturePresignStat<F> = OperatorFuture<(StatOptions, Duration), PresignedRequest, F>;
Expand description
Future that generated by Operator::presign_stat_with
.
Users can add more options by public functions provided by this struct.
Aliased Type§
struct FuturePresignStat<F> { /* private fields */ }
Implementations§
Source§impl<F: Future<Output = Result<PresignedRequest>>> FuturePresignStat<F>
impl<F: Future<Output = Result<PresignedRequest>>> FuturePresignStat<F>
Sourcepub fn override_content_disposition(self, v: &str) -> Self
pub fn override_content_disposition(self, v: &str) -> Self
Refer to options::StatOptions::override_content_disposition
for more details.
Sourcepub fn override_cache_control(self, v: &str) -> Self
pub fn override_cache_control(self, v: &str) -> Self
Refer to options::StatOptions::override_cache_control
for more details.
Sourcepub fn override_content_type(self, v: &str) -> Self
pub fn override_content_type(self, v: &str) -> Self
Refer to options::StatOptions::override_content_type
for more details.
Sourcepub fn if_match(self, v: &str) -> Self
pub fn if_match(self, v: &str) -> Self
Refer to options::StatOptions::if_match
for more details.
Sourcepub fn if_none_match(self, v: &str) -> Self
pub fn if_none_match(self, v: &str) -> Self
Refer to options::StatOptions::if_none_match
for more details.