pub type BlocksMut<'a> = Box<dyn Iterator<Item = &'a mut Block> + 'a>;
Expand description
A mutable iterator over the Block
s 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 */);