class Protocol::HTTP::Body::Writable

def inspect

@returns [String] A string representation of the body.

Inspect the body.
def inspect
	if @error
		"\#<#{self.class} #{@count} chunks written, #{status}, error=#{@error}>"
	else
		"\#<#{self.class} #{@count} chunks written, #{status}>"
	end
end