Trait aoc_nums::QuickInto

source ·
pub trait QuickInto<Other> {
    // Required method
    fn quick_into(self) -> Other;
}

Required Methods§

source

fn quick_into(self) -> Other

Implementors§

source§

impl<From, To> QuickInto<To> for Fromwhere To: QuickFrom<From>,