| 180 | [[nodiscard]] bool isStreamed() const { return framing == SizedStream or framing == ChunkedStream; } |
| 181 | [[nodiscard]] bool isChunkedStream() const { return framing == ChunkedStream; } |
| 182 | [[nodiscard]] const char* getFramingName() const { return getFramingName(framing); } |
| 183 | [[nodiscard]] static const char* getFramingName(Framing framing); |
| 184 | [[nodiscard]] uint64_t getDeclaredSizeInBytes() const |
| 185 | { |
no outgoing calls