ref_into/
lib.rs

1pub trait RefInto<T>: Sized {
2    fn ref_into(&self) -> T;
3}