Location
https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html
https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html
Summary
both Into and From say that Into should be preferred in bounds and From should be preferred when implementing.
only the part about preferring TryFrom appears in the docs mentioned above.
this has led to some usages of TryFrom in bounds, such as in ureq::get.
Location
https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html
https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html
Summary
both
IntoandFromsay thatIntoshould be preferred in bounds andFromshould be preferred when implementing.only the part about preferring
TryFromappears in the docs mentioned above.this has led to some usages of
TryFromin bounds, such as inureq::get.