Type Alias opendal::operator_futures::FutureStat

source ·
pub type FutureStat<F> = OperatorFuture<OpStat, Metadata, F>;
Expand description

Future that generated by Operator::stat_with.

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

Aliased Type§

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

Implementations§

source§

impl<F: Future<Output = Result<Metadata>>> FutureStat<F>

source

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

Set the If-Match for this operation.

source

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

Set the If-None-Match for this operation.

source

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

Set the version for this operation.