pub trait LocalStatelessServiceInstance: Send + Sync + 'static {
// Required methods
async fn open(
&self,
partition: &StatelessServicePartition
) -> Result<HSTRING>;
async fn close(&self) -> Result<()>;
fn abort(&self);
}
Required Methods§
async fn open(&self, partition: &StatelessServicePartition) -> Result<HSTRING>
async fn close(&self) -> Result<()>
fn abort(&self)
Object Safety§
This trait is not object safe.