pub trait IntoEncoded<S> {
type Output;
// Required method
fn into_encoded(self) -> Self::Output;
}Expand description
Source-side ergonomic counterpart of Encodes, in the Into
direction: methods like 42u32.to_inline() resolve here.
Blanket-derived from every Encodes impl — users never implement
IntoEncoded directly. The split mirrors std’s From/Into:
implement From, get Into for free.
Required Associated Types§
Required Methods§
Sourcefn into_encoded(self) -> Self::Output
fn into_encoded(self) -> Self::Output
Run the conversion.