From and Into is automatically implemented when From is implemented: let s: String = "hello".into(); let one: i16 = true.into();} That’s why it is common to only implement From, as your type will get implementation too.