pub trait ConfigMapGetExt {
// Required method
fn myself(&self) -> &ConfigMap;
// Provided methods
fn data(&self) -> Option<&BTreeMap<String, String>> { ... }
fn binary_data(&self) -> Option<&BTreeMap<String, ByteString>> { ... }
fn immutable(&self) -> Option<bool> { ... }
}