File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1212//!
1313//! *[See also the `u128` primitive type](../../std/primitive.u128.html).*
1414
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 {
13461346 }
13471347}
13481348
1349- #[ unstable ( feature = "i128" , issue = "35118 " ) ]
1349+ #[ stable ( feature = "i128" , since = "1.26.0 " ) ]
13501350impl From < Ipv6Addr > for u128 {
13511351 fn from ( ip : Ipv6Addr ) -> u128 {
13521352 let ip = ip. segments ( ) ;
@@ -1355,7 +1355,7 @@ impl From<Ipv6Addr> for u128 {
13551355 ( ( ip[ 6 ] as u128 ) << 16 ) + ( ip[ 7 ] as u128 )
13561356 }
13571357}
1358- #[ unstable ( feature = "i128" , issue = "35118 " ) ]
1358+ #[ stable ( feature = "i128" , since = "1.26.0 " ) ]
13591359impl From < u128 > for Ipv6Addr {
13601360 fn from ( ip : u128 ) -> Ipv6Addr {
13611361 Ipv6Addr :: new (
You can’t perform that action at this time.
0 commit comments