Function chain

Source
pub fn chain<S, T>(first: S, second: T) -> Chain<S, T>
where S: AsyncDecode,
Expand description

Create new Chain which first decodes via the given S and then decodes via the given T.