pub type Blocks<'a> = Box<dyn Iterator<Item = &'a Block> + 'a>;
An iterator over the Blocks within a Body.
Block
Body
Values of this type are created by the blocks method on Body. See its documentation for more.
blocks
struct Blocks<'a>(/* private fields */);