pub trait ShiftRaising {
    type Output: Value;

    fn shift_raising(self) -> Self::Output;
}
Expand description

Generate left shift of the bitset.

Required Associated Types

Required Methods

Implementors