Home
last modified time | relevance | path

Searched refs:BpProperties (Results 1 – 1 of 1) sorted by relevance

/development/tools/cargo_embargo/src/
Dbp.rs21 pub props: BpProperties,
26 pub struct BpProperties { struct
48 Object(BpProperties), argument
56 BpModule { module_type, props: BpProperties::new() } in new()
69 impl BpProperties { implementation
71 BpProperties { map: BTreeMap::new(), raw_block: None } in new()
85 pub fn object(&mut self, k: &str) -> &mut BpProperties { in object() argument
87 self.map.entry(k.to_string()).or_insert_with(|| BpValue::Object(BpProperties::new())); in object()