pub trait ProtocolIdentifierFactory: Send + Sync {
// Required methods
fn identifier(&self) -> &str;
fn create(&self) -> Box<dyn ProtocolIdentifier>;
}pub trait ProtocolIdentifierFactory: Send + Sync {
// Required methods
fn identifier(&self) -> &str;
fn create(&self) -> Box<dyn ProtocolIdentifier>;
}