pub trait DsMulti: Display {
    fn double(rng: &mut ThreadRng) -> Self
    where
        Self: Sized
;
fn single(rng: &mut ThreadRng) -> Self
    where
        Self: Sized
; }
Expand description

A special case of DsMsg which may contain a second segment. The two parts will be joined by a Conjunction string.

Required methods

Create a Message with two parts.

Create a Message with one part.

Implementors