pub trait CollectionNameSupport<'a> {
type O;
// Required method
fn with_collection_name(
self,
collection_name: &'a dyn CollectionName,
) -> Self::O;
}
pub trait CollectionNameSupport<'a> {
type O;
// Required method
fn with_collection_name(
self,
collection_name: &'a dyn CollectionName,
) -> Self::O;
}