Type Alias FuturePresignStat

Source
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>

Source

pub fn override_content_disposition(self, v: &str) -> Self

Source

pub fn override_cache_control(self, v: &str) -> Self

Source

pub fn override_content_type(self, v: &str) -> Self

Source

pub fn if_match(self, v: &str) -> Self

Refer to options::StatOptions::if_match for more details.

Source

pub fn if_none_match(self, v: &str) -> Self

Refer to options::StatOptions::if_none_match for more details.