pub trait UnionWriteConst: Write {
    fn union<B: Write>(self, b: B) -> UnionWrite<Self, B> 
    where
        Self: Sized
, { ... } }
Expand description

Implementing the Union Write constructor for Write.

Provided Methods

Implementors