|
1 |
| -use std::{num::ParseFloatError, str::FromStr}; |
| 1 | +#![feature(never_type)] |
| 2 | +use std::str::FromStr; |
2 | 3 |
|
3 | 4 | // @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.f64.html#method.from_str"]' 'f64::from_str()'
|
4 |
| -/// Uses the rules from [`f64::from_str()`]. |
| 5 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.f32.html#method.from_str"]' 'f32::from_str()' |
| 6 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.isize.html#method.from_str"]' 'isize::from_str()' |
| 7 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.i8.html#method.from_str"]' 'i8::from_str()' |
| 8 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.i16.html#method.from_str"]' 'i16::from_str()' |
| 9 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.i32.html#method.from_str"]' 'i32::from_str()' |
| 10 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.i64.html#method.from_str"]' 'i64::from_str()' |
| 11 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.i128.html#method.from_str"]' 'i128::from_str()' |
| 12 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.usize.html#method.from_str"]' 'usize::from_str()' |
| 13 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.u8.html#method.from_str"]' 'u8::from_str()' |
| 14 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.u16.html#method.from_str"]' 'u16::from_str()' |
| 15 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.u32.html#method.from_str"]' 'u32::from_str()' |
| 16 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.u64.html#method.from_str"]' 'u64::from_str()' |
| 17 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.u128.html#method.from_str"]' 'u128::from_str()' |
| 18 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.char.html#method.from_str"]' 'char::from_str()' |
| 19 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.bool.html#method.from_str"]' 'bool::from_str()' |
| 20 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.str.html#method.eq"]' 'str::eq()' |
| 21 | +// @has 'prim_associated_traits/struct.Number.html' '//a[@href="{{channel}}/std/primitive.never.html#method.eq"]' 'never::eq()' |
| 22 | +/// [`f64::from_str()`] [`f32::from_str()`] [`isize::from_str()`] [`i8::from_str()`] |
| 23 | +/// [`i16::from_str()`] [`i32::from_str()`] [`i64::from_str()`] [`i128::from_str()`] |
| 24 | +/// [`u16::from_str()`] [`u32::from_str()`] [`u64::from_str()`] [`u128::from_str()`] |
| 25 | +/// [`usize::from_str()`] [`u8::from_str()`] [`char::from_str()`] [`bool::from_str()`] |
| 26 | +/// [`str::eq()`] [`never::eq()`] |
5 | 27 | pub struct Number {
|
6 |
| - pub value: f64, |
| 28 | + pub f_64: f64, |
| 29 | + pub f_32: f32, |
| 30 | + pub i_size: isize, |
| 31 | + pub i_8: i8, |
| 32 | + pub i_16: i16, |
| 33 | + pub i_32: i32, |
| 34 | + pub i_64: i64, |
| 35 | + pub i_128: i128, |
| 36 | + pub u_size: usize, |
| 37 | + pub u_8: u8, |
| 38 | + pub u_16: u16, |
| 39 | + pub u_32: u32, |
| 40 | + pub u_64: u64, |
| 41 | + pub u_128: u128, |
| 42 | + pub ch: char, |
| 43 | + pub boolean: bool, |
| 44 | + pub string: str, |
| 45 | + pub n: !, |
7 | 46 | }
|
0 commit comments