@@ -121,6 +121,12 @@ Stabilized APIs
121
121
- [ ` i64::from_be_bytes ` ]
122
122
- [ ` i64::from_le_bytes ` ]
123
123
- [ ` i64::from_ne_bytes ` ]
124
+ - [ ` i128::to_be_bytes ` ]
125
+ - [ ` i128::to_le_bytes ` ]
126
+ - [ ` i128::to_ne_bytes ` ]
127
+ - [ ` i128::from_be_bytes ` ]
128
+ - [ ` i128::from_le_bytes ` ]
129
+ - [ ` i128::from_ne_bytes ` ]
124
130
- [ ` isize::to_be_bytes ` ]
125
131
- [ ` isize::to_le_bytes ` ]
126
132
- [ ` isize::to_ne_bytes ` ]
@@ -151,6 +157,12 @@ Stabilized APIs
151
157
- [ ` u64::from_be_bytes ` ]
152
158
- [ ` u64::from_le_bytes ` ]
153
159
- [ ` u64::from_ne_bytes ` ]
160
+ - [ ` u128::to_be_bytes ` ]
161
+ - [ ` u128::to_le_bytes ` ]
162
+ - [ ` u128::to_ne_bytes ` ]
163
+ - [ ` u128::from_be_bytes ` ]
164
+ - [ ` u128::from_le_bytes ` ]
165
+ - [ ` u128::from_ne_bytes ` ]
154
166
- [ ` usize::to_be_bytes ` ]
155
167
- [ ` usize::to_le_bytes ` ]
156
168
- [ ` usize::to_ne_bytes ` ]
@@ -208,6 +220,12 @@ Compatibility Notes
208
220
[ `UnsafeCell::get` ] : https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html#method.get
209
221
[ `slice::as_ptr` ] : https://doc.rust-lang.org/std/primitive.slice.html#method.as_ptr
210
222
[ `char::is_ascii` ] : https://doc.rust-lang.org/std/primitive.char.html#method.is_ascii
223
+ [ `i128::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_be_bytes
224
+ [ `i128::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_le_bytes
225
+ [ `i128::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_ne_bytes
226
+ [ `i128::to_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_be_bytes
227
+ [ `i128::to_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_le_bytes
228
+ [ `i128::to_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_ne_bytes
211
229
[ `i16::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_be_bytes
212
230
[ `i16::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_le_bytes
213
231
[ `i16::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_ne_bytes
@@ -240,6 +258,12 @@ Compatibility Notes
240
258
[ `isize::to_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_ne_bytes
241
259
[ `iter::empty` ] : https://doc.rust-lang.org/std/iter/fn.empty.html
242
260
[ `str::as_ptr` ] : https://doc.rust-lang.org/std/primitive.str.html#method.as_ptr
261
+ [ `u128::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_be_bytes
262
+ [ `u128::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_le_bytes
263
+ [ `u128::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_ne_bytes
264
+ [ `u128::to_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_be_bytes
265
+ [ `u128::to_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_le_bytes
266
+ [ `u128::to_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_ne_bytes
243
267
[ `u16::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_be_bytes
244
268
[ `u16::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_le_bytes
245
269
[ `u16::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_ne_bytes
0 commit comments