Into — convert into type. From — convert from type.
Into:
From:
1impl From<&str> for MyString {2 fn from(s: &str) -> Self {3 MyString(s.to_string())4 }5}67// Into is automatically implemented8let s: MyString = "hello".into();
Key: Implement From, get Into for free.