pub type CodecEncodeValueResult<E> = Result<usize, TranscodeError<CodecEncodeError<E>>>;Expand description
Result type returned by reset-prefixed one-value encode helpers.
Framework buffer failures are reported by TranscodeError. Codec-domain
encode failures are wrapped in CodecEncodeError and stored in the
TranscodeError::Domain branch.
Aliased Type§
pub enum CodecEncodeValueResult<E> {
Ok(usize),
Err(TranscodeError<CodecEncodeError<E>>),
}Variants§
Ok(usize)
Contains the success value
Err(TranscodeError<CodecEncodeError<E>>)
Contains the error value