(
&self,
location: &Path,
payload: PutPayload,
opts: PutOptions,
)
| 92 | #[async_trait] |
| 93 | impl<T: ObjectStore> ObjectStore for LatencyObjectStore<T> { |
| 94 | async fn put_opts( |
| 95 | &self, |
| 96 | location: &Path, |
| 97 | payload: PutPayload, |
| 98 | opts: PutOptions, |
| 99 | ) -> Result<PutResult> { |
| 100 | self.inner.put_opts(location, payload, opts).await |
| 101 | } |
| 102 | |
| 103 | async fn put_multipart_opts( |
| 104 | &self, |