pub trait ToMatchable: Matchable + Sized {
    // Provided method
    fn to_matchable(self) -> Box<dyn Matchable> { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§