class Protocol::HTTP::Body::Buffered

def inspect

@returns [String] a string representation of the buffered body.

Inspect the buffered body.
def inspect
	if @chunks
		"\#<#{self.class} #{@chunks.size} chunks, #{self.length} bytes>"
	end
end