FromInto

Types implement From and Into to facilitate type conversions. Unlike as, these traits correspond to lossless, infallible conversions.

fn main() {
    let s = String::from("hello");
    let addr = std::net::Ipv4Addr::from([127, 0, 0, 1]);
    let one = i16::from(true);
    let bigger = i32::from(123_i16);
    println!("{s}, {addr}, {one}, {bigger}");
}

From が実装されると、Into が自動的に実装されます。

fn main() {
    let s: String = "hello".into();
    let addr: std::net::Ipv4Addr = [127, 0, 0, 1].into();
    let one: i16 = true.into();
    let bigger: i32 = 123_i16.into();
    println!("{s}, {addr}, {one}, {bigger}");
}
This slide should take about 5 minutes.
  • このように Into も実装されるため、型には From のみを実装するのが一般的です。
  • String に変換できるすべて」のような関数引数の入力型を宣言する場合、このルールは逆となり、Intoを使用する必要があります。関数は、From を実装する型と、Into のみ を実装する型を受け入れます。