[][src]Trait swim_codec::output::IntoOutput

pub trait IntoOutput {
    type Token;
    type IntoOut;
    fn into_output(self) -> Self::IntoOut;
}

Associated Types

type Token

type IntoOut

Loading content...

Required methods

fn into_output(self) -> Self::IntoOut

Loading content...

Implementors

impl<'a, T: 'a> IntoOutput for &'a mut [T][src]

type Token = T

type IntoOut = SliceOutput<'a, T>

impl<O> IntoOutput for O where
    O: Output
[src]

type Token = O::Token

type IntoOut = O

Loading content...