doc.rust-lang.org/stable/std/convert/enum.Infallible.html
Preview meta tags from the doc.rust-lang.org website.
Linked Hostnames
2General Meta Tags
6- titleInfallible in std::convert - Rust
- charsetutf-8
- viewportwidth=device-width, initial-scale=1.0
- generatorrustdoc
- descriptionThe error type for errors that can never happen.
Link Tags
4- alternate icon../../static.files/favicon-32x32-6580c154.png
- icon../../static.files/favicon-044be391.svg
- stylesheet../../static.files/normalize-9960930a.css
- stylesheet../../static.files/rustdoc-1a91846b.css
Links
5- https://github.com/rust-lang/rust/issues/126799
- https://github.com/rust-lang/rust/issues/99301
- https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn+main()+%7B%0A++++impl%3CT,+U%3E+TryFrom%3CU%3E+for+T+where+U:+Into%3CT%3E+%7B%0A++++++++type+Error+=+Infallible;%0A++++%0A++++++++fn+try_from(value:+U)+-%3E+Result%3CSelf,+Infallible%3E+%7B%0A++++++++++++Ok(U::into(value))++//+Never+returns+%60Err%60%0A++++++++%7D%0A++++%7D%0A%7D&edition=2024
- https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn+main()+%7B%0A++++pub+type+Infallible+=+!;%0A%7D&edition=2024
- https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn+main()+%7B%0A++++trait+MyTrait+%7B%7D%0A++++impl+MyTrait+for+fn()+-%3E+!+%7B%7D%0A++++impl+MyTrait+for+fn()+-%3E+std::convert::Infallible+%7B%7D%0A%7D&edition=2024