pub trait EncodableLen: Encodable<CodecLen> {
// Provided method
fn encoded_size(&self) -> IoResult<usize> { ... }
}
Expand description
Provided Methods§
Sourcefn encoded_size(&self) -> IoResult<usize>
fn encoded_size(&self) -> IoResult<usize>
Computes the size of self
when encoded.
This method simulates encoding without writing any data, allowing for preallocation or buffer sizing.