[go: up one dir, main page]

num-integer 0.1.37

Integer traits and functions
Build #99119 2018-05-10 23:12:34

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version
rustc 1.26.0-dev (0eb87c9bf 2018-03-16)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading num-integer v0.1.37
Compiling num-traits v0.2.3
Running `rustc --crate-name num_traits .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="std"' --cfg 'feature="i128"' -C metadata=8a58f0e664e7d89c -C extra-filename=-8a58f0e664e7d89c --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow`
error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/identities.rs:45:12
|
45 | zero_impl!(u128,  0);
|            ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/identities.rs:53:12
|
53 | zero_impl!(i128,  0);
|            ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/identities.rs:113:11
|
113 | one_impl!(u128,   1);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/identities.rs:121:11
|
121 | one_impl!(i128,   1);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/sign.rs:78:14
|
78 | signed_impl!(i128);
|              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/sign.rs:190:32
|
190 | empty_trait_impl!(Unsigned for u128);
|                                ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/saturating.rs:30:33
|
30 | saturating_impl!(Saturating for i128 u128);
|                                 ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/saturating.rs:30:38
|
30 | saturating_impl!(Saturating for i128 u128);
|                                      ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:28:40
|
28 | checked_impl!(CheckedAdd, checked_add, u128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:36:40
|
36 | checked_impl!(CheckedAdd, checked_add, i128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:51:40
|
51 | checked_impl!(CheckedSub, checked_sub, u128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:59:40
|
59 | checked_impl!(CheckedSub, checked_sub, i128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:75:40
|
75 | checked_impl!(CheckedMul, checked_mul, u128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:83:40
|
83 | checked_impl!(CheckedMul, checked_mul, i128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:99:40
|
99 | checked_impl!(CheckedDiv, checked_div, u128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:107:40
|
107 | checked_impl!(CheckedDiv, checked_div, i128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:140:40
|
140 | checked_impl!(CheckedRem, checked_rem, u128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:148:40
|
148 | checked_impl!(CheckedRem, checked_rem, i128);
|                                        ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:188:46
|
188 | checked_impl_unary!(CheckedNeg, checked_neg, u128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:196:46
|
196 | checked_impl_unary!(CheckedNeg, checked_neg, i128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:233:46
|
233 | checked_shift_impl!(CheckedShl, checked_shl, u128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:241:46
|
241 | checked_shift_impl!(CheckedShl, checked_shl, i128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:267:46
|
267 | checked_shift_impl!(CheckedShr, checked_shr, u128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/checked.rs:275:46
|
275 | checked_shift_impl!(CheckedShr, checked_shr, i128);
|                                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:36:43
|
36 | wrapping_impl!(WrappingAdd, wrapping_add, u128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:44:43
|
44 | wrapping_impl!(WrappingAdd, wrapping_add, i128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:59:43
|
59 | wrapping_impl!(WrappingSub, wrapping_sub, u128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:67:43
|
67 | wrapping_impl!(WrappingSub, wrapping_sub, i128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:82:43
|
82 | wrapping_impl!(WrappingMul, wrapping_mul, u128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/wrapping.rs:90:43
|
90 | wrapping_impl!(WrappingMul, wrapping_mul, i128);
|                                           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/mul_add.rs:71:26
|
71 | mul_add_impl!(MulAdd for i128 u128);
|                          ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/mul_add.rs:71:31
|
71 | mul_add_impl!(MulAdd for i128 u128);
|                               ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/mul_add.rs:102:39
|
102 | mul_add_assign_impl!(MulAddAssign for i128 u128);
|                                       ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/ops/mul_add.rs:102:44
|
102 | mul_add_assign_impl!(MulAddAssign for i128 u128);
|                                            ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:35:15
|
35 | bounded_impl!(u128,  u128::MIN,  u128::MAX);
|               ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:43:15
|
43 | bounded_impl!(i128,  i128::MIN,  i128::MAX);
|               ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:48:33
|
48 |     fn to_i128(&self) -> Option<i128> {
|                                 ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:88:33
|
88 |     fn to_u128(&self) -> Option<u128> {
|                                 ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:138:30
|
138 |         impl ToPrimitive for $T {
|                              ^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:37
|
110 |             let min = $DstT::MIN as $SrcT;
|                                     ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:37
|
111 |             let max = $DstT::MAX as $SrcT;
|                                     ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:26
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                          ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:109:37
|
109 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:112:48
|
112 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || (min <= *self && *self <= max) {
|                                                ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:113:31
|
113 |                 Some(*self as $DstT)
|                               ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:37
|
126 |             let max = $DstT::MAX as $SrcT;
|                                     ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:41
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                         ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:125:37
|
125 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:127:63
|
127 |             if 0 <= *self && (size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max) {
|                                                               ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:128:31
|
128 |                 Some(*self as $DstT)
|                               ^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:207:30
|
207 |         impl ToPrimitive for $T {
|                              ^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:37
|
180 |             let max = $DstT::MAX as $SrcT;
|                                     ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:26
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                          ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:179:37
|
179 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:181:47
|
181 |             if size_of::<$SrcT>() < size_of::<$DstT>() || *self <= max {
|                                               ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:182:31
|
182 |                 Some(*self as $DstT)
|                               ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:37
|
195 |             let max = $DstT::MAX as $SrcT;
|                                     ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:26
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                          ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:194:37
|
194 |         fn $method(&self) -> Option<$DstT> {
|                                     ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:196:48
|
196 |             if size_of::<$SrcT>() <= size_of::<$DstT>() || *self <= max {
|                                                ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:197:31
|
197 |                 Some(*self as $DstT)
|                               ^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:265:37
|
265 |         fn $method(&self) -> Option<$i> {
|                                     ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:268:44
|
268 |             if size_of::<$f>() > size_of::<$i>() {
|                                            ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:273:42
|
273 |                     return Some(*self as $i);
|                                          ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:283:42
|
283 |                     return Some(*self as $i);
|                                          ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:295:37
|
295 |         fn $method(&self) -> Option<$u> {
|                                     ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:298:44
|
298 |             if size_of::<$f>() > size_of::<$u>() {
|                                            ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:302:42
|
302 |                     return Some(*self as $u);
|                                          ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:310:42
|
310 |                     return Some(*self as $u);
|                                          ^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:265:37
|
265 |         fn $method(&self) -> Option<$i> {
|                                     ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:268:44
|
268 |             if size_of::<$f>() > size_of::<$i>() {
|                                            ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:273:42
|
273 |                     return Some(*self as $i);
|                                          ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:283:42
|
283 |                     return Some(*self as $i);
|                                          ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:295:37
|
295 |         fn $method(&self) -> Option<$u> {
|                                     ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:298:44
|
298 |             if size_of::<$f>() > size_of::<$u>() {
|                                            ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:302:42
|
302 |                     return Some(*self as $u);
|                                          ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:310:42
|
310 |                     return Some(*self as $u);
|                                          ^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:395:21
|
395 |     fn from_i128(n: i128) -> Option<Self> {
|                     ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:440:21
|
440 |     fn from_u128(n: u128) -> Option<Self> {
|                     ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
483 | impl_from_primitive!(isize, to_isize);
| -------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
483 | impl_from_primitive!(isize, to_isize);
| -------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
484 | impl_from_primitive!(i8,    to_i8);
| ----------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
484 | impl_from_primitive!(i8,    to_i8);
| ----------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
485 | impl_from_primitive!(i16,   to_i16);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
485 | impl_from_primitive!(i16,   to_i16);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
486 | impl_from_primitive!(i32,   to_i32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
486 | impl_from_primitive!(i32,   to_i32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
487 | impl_from_primitive!(i64,   to_i64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
487 | impl_from_primitive!(i64,   to_i64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:489:22
|
489 | impl_from_primitive!(i128,  to_i128);
|                      ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
489 | impl_from_primitive!(i128,  to_i128);
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
489 | impl_from_primitive!(i128,  to_i128);
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
490 | impl_from_primitive!(usize, to_usize);
| -------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
490 | impl_from_primitive!(usize, to_usize);
| -------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
491 | impl_from_primitive!(u8,    to_u8);
| ----------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
491 | impl_from_primitive!(u8,    to_u8);
| ----------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
492 | impl_from_primitive!(u16,   to_u16);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
492 | impl_from_primitive!(u16,   to_u16);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
493 | impl_from_primitive!(u32,   to_u32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
493 | impl_from_primitive!(u32,   to_u32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
494 | impl_from_primitive!(u64,   to_u64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
494 | impl_from_primitive!(u64,   to_u64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:496:22
|
496 | impl_from_primitive!(u128,  to_u128);
|                      ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
496 | impl_from_primitive!(u128,  to_u128);
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
496 | impl_from_primitive!(u128,  to_u128);
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
497 | impl_from_primitive!(f32,   to_f32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
497 | impl_from_primitive!(f32,   to_f32);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:468:39
|
468 |             #[inline] fn from_i128(n: i128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
498 | impl_from_primitive!(f64,   to_f64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:475:39
|
475 |             #[inline] fn from_u128(n: u128) -> Option<$T> { n.$to_ty() }
|                                       ^^^^
...
498 | impl_from_primitive!(f64,   to_f64);
| ------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:505:37
|
505 |           fn $method(&self) -> Option<$i> {
|                                       ^^
...
512 | /     impl_to_primitive_wrapping! {
513 | |         fn to_isize -> isize;
514 | |         fn to_i8 -> i8;
515 | |         fn to_i16 -> i16;
...   |
530 | |         fn to_f64 -> f64;
531 | |     }
| |_____- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:538:23
|
538 |           fn $method(n: $i) -> Option<Self> {
|                         ^^
...
545 | /     impl_from_primitive_wrapping! {
546 | |         fn from_isize(isize);
547 | |         fn from_i8(i8);
548 | |         fn from_i16(i16);
...   |
563 | |         fn from_f64(f64);
564 | |     }
| |_____- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:609:16
|
609 | impl_num_cast!(u128,  to_u128);
|                ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:616:16
|
616 | impl_num_cast!(i128,  to_i128);
|                ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
689 | impl_as_primitive!(u8 => { char, f32, f64 });
| --------------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
689 | impl_as_primitive!(u8 => { char, f32, f64 });
| --------------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
690 | impl_as_primitive!(i8 => { f32, f64 });
| --------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
690 | impl_as_primitive!(i8 => { f32, f64 });
| --------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
691 | impl_as_primitive!(u16 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
691 | impl_as_primitive!(u16 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
692 | impl_as_primitive!(i16 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
692 | impl_as_primitive!(i16 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
693 | impl_as_primitive!(u32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
693 | impl_as_primitive!(u32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
694 | impl_as_primitive!(i32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
694 | impl_as_primitive!(i32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
695 | impl_as_primitive!(u64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
695 | impl_as_primitive!(u64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
696 | impl_as_primitive!(i64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
696 | impl_as_primitive!(i64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:698:20
|
698 | impl_as_primitive!(u128 => { f32, f64 });
|                    ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
698 | impl_as_primitive!(u128 => { f32, f64 });
| ----------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
698 | impl_as_primitive!(u128 => { f32, f64 });
| ----------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:700:20
|
700 | impl_as_primitive!(i128 => { f32, f64 });
|                    ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
700 | impl_as_primitive!(i128 => { f32, f64 });
| ----------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
700 | impl_as_primitive!(i128 => { f32, f64 });
| ----------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
701 | impl_as_primitive!(usize => { f32, f64 });
| ------------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
701 | impl_as_primitive!(usize => { f32, f64 });
| ------------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
702 | impl_as_primitive!(isize => { f32, f64 });
| ------------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
702 | impl_as_primitive!(isize => { f32, f64 });
| ------------------------------------------ in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
703 | impl_as_primitive!(f32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
703 | impl_as_primitive!(f32 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
704 | impl_as_primitive!(f64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
704 | impl_as_primitive!(f64 => { f32, f64 });
| ---------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
705 | impl_as_primitive!(char => { char });
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
705 | impl_as_primitive!(char => { char });
| ------------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:683:66
|
683 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl u128);
|                                                                  ^^^^
...
706 | impl_as_primitive!(bool => {});
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:685:66
|
685 |         impl_as_primitive!(@ $T => #[cfg(feature = "i128")] impl i128);
|                                                                  ^^^^
...
706 | impl_as_primitive!(bool => {});
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:372:16
|
372 | prim_int_impl!(u128,  i128,  u128);
|                ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:372:23
|
372 | prim_int_impl!(u128,  i128,  u128);
|                       ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:372:30
|
372 | prim_int_impl!(u128,  i128,  u128);
|                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:379:16
|
379 | prim_int_impl!(i128,  i128,  u128);
|                ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:379:23
|
379 | prim_int_impl!(i128,  i128,  u128);
|                       ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/int.rs:379:30
|
379 | prim_int_impl!(i128,  i128,  u128);
|                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:103:11
|
103 | pow_impl!(u128, u8, u32, u128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:103:26
|
103 | pow_impl!(u128, u8, u32, u128::pow);
|                          ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:105:11
|
105 | pow_impl!(u128, u16, u32, u128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:105:27
|
105 | pow_impl!(u128, u16, u32, u128::pow);
|                           ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:107:11
|
107 | pow_impl!(u128, u32, u32, u128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:107:27
|
107 | pow_impl!(u128, u32, u32, u128::pow);
|                           ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:109:11
|
109 | pow_impl!(u128, usize);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:112:11
|
112 | pow_impl!(i128, u8, u32, i128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:112:26
|
112 | pow_impl!(i128, u8, u32, i128::pow);
|                          ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:114:11
|
114 | pow_impl!(i128, u16, u32, i128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:114:27
|
114 | pow_impl!(i128, u16, u32, i128::pow);
|                           ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:116:11
|
116 | pow_impl!(i128, u32, u32, i128::pow);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:116:27
|
116 | pow_impl!(i128, u32, u32, i128::pow);
|                           ^^^^^^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:118:11
|
118 | pow_impl!(i128, usize);
|           ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:137:20
|
137 | pow_impl!(Wrapping<u128>);
|                    ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/pow.rs:139:20
|
139 | pow_impl!(Wrapping<i128>);
|                    ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/lib.rs:164:25
|
164 | int_trait_impl!(Num for u128 i128);
|                         ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: 128-bit type is unstable (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/lib.rs:164:30
|
164 | int_trait_impl!(Num for u128 i128);
|                              ^^^^
|
= help: add #![feature(i128_type)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:6:12
|
6 | use core::{i128, u128};
|            ^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:6:18
|
6 | use core::{i128, u128};
|                  ^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:7:12
|
7 | use core::{i128, u128};
|            ^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:7:18
|
7 | use core::{i128, u128};
|                  ^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:270:36
|
270 |                 const MIN_M1: $f = $i::MIN as $f - 1.0;
|                                    ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:271:36
|
271 |                 const MAX_P1: $f = $i::MAX as $f + 1.0;
|                                    ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:278:33
|
278 |                 const MIN: $f = $i::MIN as $f;
|                                 ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:281:36
|
281 |                 const MAX_P1: $f = $i::MAX as $f;
|                                    ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:300:36
|
300 |                 const MAX_P1: $f = $u::MAX as $f + 1.0;
|                                    ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:308:36
|
308 |                 const MAX_P1: $f = $u::MAX as $f;
|                                    ^^^^^^^
...
349 | impl_to_primitive_float!(f32);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:270:36
|
270 |                 const MIN_M1: $f = $i::MIN as $f - 1.0;
|                                    ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:271:36
|
271 |                 const MAX_P1: $f = $i::MAX as $f + 1.0;
|                                    ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:278:33
|
278 |                 const MIN: $f = $i::MIN as $f;
|                                 ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:281:36
|
281 |                 const MAX_P1: $f = $i::MAX as $f;
|                                    ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:300:36
|
300 |                 const MAX_P1: $f = $u::MAX as $f + 1.0;
|                                    ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:308:36
|
308 |                 const MAX_P1: $f = $u::MAX as $f;
|                                    ^^^^^^^
...
350 | impl_to_primitive_float!(f64);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:35:22
|
35 | bounded_impl!(u128,  u128::MIN,  u128::MAX);
|                      ^^^^^^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:35:34
|
35 | bounded_impl!(u128,  u128::MIN,  u128::MAX);
|                                  ^^^^^^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:43:22
|
43 | bounded_impl!(i128,  i128::MIN,  i128::MAX);
|                      ^^^^^^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/bounds.rs:43:34
|
43 | bounded_impl!(i128,  i128::MIN,  i128::MAX);
|                                  ^^^^^^^^^
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
167 | impl_to_primitive_int!(isize);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
168 | impl_to_primitive_int!(i8);
| --------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
169 | impl_to_primitive_int!(i16);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
170 | impl_to_primitive_int!(i32);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
171 | impl_to_primitive_int!(i64);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:110:23
|
110 |             let min = $DstT::MIN as $SrcT;
|                       ^^^^^^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:111:23
|
111 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:126:23
|
126 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
173 | impl_to_primitive_int!(i128);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
236 | impl_to_primitive_uint!(usize);
| ------------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
237 | impl_to_primitive_uint!(u8);
| ---------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
238 | impl_to_primitive_uint!(u16);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
239 | impl_to_primitive_uint!(u32);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
240 | impl_to_primitive_uint!(u64);
| ----------------------------- in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:180:23
|
180 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error[E0658]: use of unstable library feature 'i128' (see issue #35118)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/cast.rs:195:23
|
195 |             let max = $DstT::MAX as $SrcT;
|                       ^^^^^^^^^^
...
242 | impl_to_primitive_uint!(u128);
| ------------------------------ in this macro invocation
|
= help: add #![feature(i128)] to the crate attributes to enable

error: aborting due to 281 previous errors

For more information about this error, try `rustc --explain E0658`.
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not compile `num-traits`.,
cause: process didn't exit successfully: `rustc --crate-name num_traits .cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.3/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="std" --cfg feature="i128" -C metadata=8a58f0e664e7d89c -C extra-filename=-8a58f0e664e7d89c --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.