File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
//!
13
13
//! *[See also the `u128` primitive type](../../std/primitive.u128.html).*
14
14
15
- #![ unstable ( feature = "i128" , issue= "35118 ") ]
16
- uint_module ! { u128 , #[ unstable ( feature = "i128" , issue= "35118 ") ] }
15
+ #![ stable ( feature = "i128" , since = "1.26.0 ") ]
16
+ uint_module ! { u128 , #[ stable ( feature = "i128" , since= "1.26.0 ") ] }
Original file line number Diff line number Diff line change @@ -1346,7 +1346,7 @@ impl FromInner<c::in6_addr> for Ipv6Addr {
1346
1346
}
1347
1347
}
1348
1348
1349
- #[ unstable ( feature = "i128" , issue = "35118 " ) ]
1349
+ #[ stable ( feature = "i128" , since = "1.26.0 " ) ]
1350
1350
impl From < Ipv6Addr > for u128 {
1351
1351
fn from ( ip : Ipv6Addr ) -> u128 {
1352
1352
let ip = ip. segments ( ) ;
@@ -1355,7 +1355,7 @@ impl From<Ipv6Addr> for u128 {
1355
1355
( ( ip[ 6 ] as u128 ) << 16 ) + ( ip[ 7 ] as u128 )
1356
1356
}
1357
1357
}
1358
- #[ unstable ( feature = "i128" , issue = "35118 " ) ]
1358
+ #[ stable ( feature = "i128" , since = "1.26.0 " ) ]
1359
1359
impl From < u128 > for Ipv6Addr {
1360
1360
fn from ( ip : u128 ) -> Ipv6Addr {
1361
1361
Ipv6Addr :: new (
You can’t perform that action at this time.
0 commit comments