Expand description
Human-readable protobuf wire format inspection.
Since we don’t have access to .proto schemas at runtime, this module
decodes raw protobuf bytes using the wire format specification. Each field
is displayed with its field number, wire type, and value — giving developers
meaningful insight into what is being sent over the wire.
Structs§
- Grpc
Frame - A decoded gRPC frame.
- Proto
Field - A single decoded protobuf field.
Enums§
- Proto
Value - Represents a decoded protobuf value.
- Wire
Type - Wire types as defined by the protobuf encoding specification.
Functions§
- decode_
protobuf - Attempt to decode raw bytes as protobuf wire format fields.
- format_
grpc_ message - Format gRPC request/response data into a human-readable string.
- hex_
dump - Format a byte slice as a hex dump suitable for debug logging.
- parse_
grpc_ frames - Parse gRPC-encoded data into frames.