//! Message codecs: the [`Codec`] trait and the default [`Prost`]
//! implementation.
use crateStatus;
use Bytes;
pub use Prost;
/// Per-RPC value codec — encodes a request/response message to bytes and back.
///
/// The default for codegen is [`Prost`]. Other codecs (JSON, custom)
/// implement this trait so the same call-shape dispatch functions can drive
/// them without runtime dispatch.