pub trait NamespaceProxyInterface: Send + Sync {
type CreateFromDictsResponseFut: Future<Output = Result<NamespaceCreateFromDictsResult, Error>> + Send;
// Required method
fn create_from_dicts(
&self,
entries: Vec<NamespaceDictPair>
) -> Self::CreateFromDictsResponseFut;
}