2020-02-11 22:39:02 +01:00
|
|
|
//! This crates defines the trait resolution method.
|
2020-02-22 11:44:18 +01:00
|
|
|
//!
|
|
|
|
//! - **Traits.** Trait resolution is implemented in the `traits` module.
|
|
|
|
//!
|
2020-04-12 05:02:35 +09:00
|
|
|
//! For more information about how rustc works, see the [rustc-dev-guide].
|
2020-02-22 11:44:18 +01:00
|
|
|
//!
|
2020-04-12 05:02:35 +09:00
|
|
|
//! [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
|
2020-02-22 11:44:18 +01:00
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
|
|
|
#![feature(bool_to_option)]
|
|
|
|
#![feature(drain_filter)]
|
|
|
|
#![feature(in_band_lifetimes)]
|
|
|
|
#![feature(crate_visibility_modifier)]
|
2020-03-13 19:28:14 -07:00
|
|
|
#![feature(or_patterns)]
|
2020-02-11 22:39:02 +01:00
|
|
|
#![recursion_limit = "512"] // For rustdoc
|
2020-02-22 11:44:18 +01:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
2020-03-29 16:41:09 +02:00
|
|
|
extern crate rustc_middle;
|
2020-02-22 11:44:18 +01:00
|
|
|
|
2020-06-20 18:29:13 +08:00
|
|
|
pub mod autoderef;
|
2020-02-22 11:44:18 +01:00
|
|
|
pub mod infer;
|
|
|
|
pub mod opaque_types;
|
|
|
|
pub mod traits;
|