Trait IntoOutput
swim_codec::output
pub trait IntoOutput { type Token; type IntoOut; fn into_output(self) -> Self::IntoOut; }
type Token
type IntoOut
fn into_output(self) -> Self::IntoOut
impl<'a, T: 'a> IntoOutput for &'a mut [T]
type Token = T
type IntoOut = SliceOutput<'a, T>
fn into_output(self) -> SliceOutput<'a, T>
impl<O> IntoOutput for O where O: Output,
type Token = O::Token
type IntoOut = O
fn into_output(self) -> O