diff options
| author | Ethan Brierley <ethanboxx@gmail.com> | 2018-11-06 09:29:24 +0000 |
|---|---|---|
| committer | Ethan Brierley <ethanboxx@gmail.com> | 2018-11-06 09:29:24 +0000 |
| commit | f1a593d1162dc399222c219a261bc95126e7fa62 (patch) | |
| tree | 67bdd8b6a531f016b365ede666b6c52c02c03ac7 | |
| parent | 3dc56b7d9c81cdfb400cf6b937f12ee3b7e3b6b9 (diff) | |
| download | rust-f1a593d1162dc399222c219a261bc95126e7fa62.tar.gz rust-f1a593d1162dc399222c219a261bc95126e7fa62.zip | |
Document kind field
| -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 f31ce033649..a7b6d719c6a 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -4768,6 +4768,7 @@ fn from_str_radix<T: FromStrRadixHelper>(src: &str, radix: u32) -> Result<T, Par #[derive(Debug, Clone, PartialEq, Eq)] #[stable(feature = "rust1", since = "1.0.0")] pub struct ParseIntError { + /// Stores the cause of parsing an integer failing pub kind: IntErrorKind, } |
