Type Alias FuturePresignRead

Source
pub type FuturePresignRead<F> = OperatorFuture<(ReadOptions, Duration), PresignedRequest, F>;
Expand description

Future that generated by Operator::presign_read_with.

Users can add more options by public functions provided by this struct.

Aliased Type§

struct FuturePresignRead<F> { /* private fields */ }

Implementations§

Source§

impl<F: Future<Output = Result<PresignedRequest>>> FuturePresignRead<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::ReadOptions::if_match for more details.

Source

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

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