pub trait UuidApi: Send + Sync {
// Required method
fn get_uuid<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<String, Error<GetUuidError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Available on crate feature
uuid_api only.