castle_types/
convert_from.rs

1
2pub trait ConvertFrom<T> {
3    fn from(value: T) -> Self;
4}