Document kind field

This commit is contained in:
Ethan Brierley 2018-11-06 09:29:24 +00:00
parent 3dc56b7d9c
commit f1a593d116

View file

@ -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,
}