diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-04-07 17:15:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-04-07 17:54:35 -0700 |
| commit | 1b568ba0fd531ff33d45cb52d5c8cbfe1908be86 (patch) | |
| tree | 8fc9c711dd8a5f74d292edb549d1476f47e81ec2 /src/libcore/num | |
| parent | f651bea822c7c1b1dcc317e089709804a97e2236 (diff) | |
| download | rust-1b568ba0fd531ff33d45cb52d5c8cbfe1908be86.tar.gz rust-1b568ba0fd531ff33d45cb52d5c8cbfe1908be86.zip | |
std: Hide facade extension traits in docs
These traits are currently all just unstable parts of the facade which are implementation details for primitives further up the facade. This may make it more difficult to find what set of methods you get if only linking to libcore, but for now that's also unstable behavior. Closes #22025
Diffstat (limited to 'src/libcore/num')
| -rw-r--r-- | src/libcore/num/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 28e0bcf13dd..2a194766834 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -2476,6 +2476,7 @@ pub enum FpCategory { // `unused_self`. Removing it requires #8888 to be fixed. #[unstable(feature = "core", reason = "distribution of methods between core/std is unclear")] +#[doc(hidden)] pub trait Float : Copy + Clone + NumCast |
