Elegant way to capture rendered block's html in a variable.

Permalink
This will render a block:
$block->display()


Is there an elegant way to do the following without ob_start(), etc?
$html = $block->getHTML(); // This would be nice.
echo $html;


Thanks.

BigBobbyD