Trait zenoh_keyexpr::keyexpr_tree::traits::IKeyExprTreeExtMut
source · pub trait IKeyExprTreeExtMut<'a, Weight>: IKeyExprTreeMut<'a, Weight> {
// Provided methods
fn weight_at_mut(&'a mut self, key: &keyexpr) -> Option<&'a mut Weight> { ... }
fn insert(&mut self, key: &keyexpr, weight: Weight) -> Option<Weight> { ... }
fn prune(&mut self) { ... }
}Expand description
Extension methods for mutable KeTrees.
Provided Methods§
sourcefn weight_at_mut(&'a mut self, key: &keyexpr) -> Option<&'a mut Weight>
fn weight_at_mut(&'a mut self, key: &keyexpr) -> Option<&'a mut Weight>
Returns a mutable reference to the weight of the node at key.
Object Safety§
This trait is not object safe.