pub type BlocksMut<'a> = Box<dyn Iterator<Item = &'a mut Block> + 'a>;Expand description
A mutable iterator over the Blocks within a Body.
Values of this type are created by the blocks_mut method on Body. See its
documentation for more.
Aliased Type§
struct BlocksMut<'a>(/* private fields */);