pub trait PlatformIdempotencyKeyProvider: Send + Sync {
// Required method
fn create_key(&self) -> Result<String, AgentError>;
}Required Methods§
fn create_key(&self) -> Result<String, AgentError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".