(&self, entry: MetadataEntry)
| 42 | #[async_trait] |
| 43 | impl<T: MetadataProposer + ?Sized> MetadataProposer for std::sync::Arc<T> { |
| 44 | async fn propose_and_wait(&self, entry: MetadataEntry) -> Result<u64> { |
| 45 | (**self).propose_and_wait(entry).await |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /// Drives a [`DecommissionPlan`] to completion. |