pub trait CorrelationIdGenerator {
    // Required method
    fn generate_correlation_id(
        &self
    ) -> Result<CorrelationId, CorrelationIdError>;
}

Required Methods§

Implementors§