Trait Collectable

Source
pub trait Collectable: Extract + Sized {
    // Provided method
    fn collect(self) -> CollectParser<Self> { ... }
}

Provided Methods§

Source

fn collect(self) -> CollectParser<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Parser> Collectable for Parser
where Parser: OutputToByteStream,