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>
impl<F: Future<Output = Result<Metadata>>> FutureStat<F>
sourcepub fn if_none_match(self, v: &str) -> Self
pub fn if_none_match(self, v: &str) -> Self
Set the If-None-Match for this operation.
sourcepub fn if_modified_since(self, v: DateTime<Utc>) -> Self
pub fn if_modified_since(self, v: DateTime<Utc>) -> Self
Set the If-Modified-Since for this operation.
sourcepub fn if_unmodified_since(self, v: DateTime<Utc>) -> Self
pub fn if_unmodified_since(self, v: DateTime<Utc>) -> Self
Set the If-Unmodified-Since for this operation.