@@ -220,6 +220,12 @@ Compatibility Notes
220220[ `UnsafeCell::get` ] : https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html#method.get
221221[ `slice::as_ptr` ] : https://doc.rust-lang.org/std/primitive.slice.html#method.as_ptr
222222[ `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
223229[ `i16::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_be_bytes
224230[ `i16::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_le_bytes
225231[ `i16::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_ne_bytes
@@ -252,6 +258,12 @@ Compatibility Notes
252258[ `isize::to_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_ne_bytes
253259[ `iter::empty` ] : https://doc.rust-lang.org/std/iter/fn.empty.html
254260[ `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
255267[ `u16::from_be_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_be_bytes
256268[ `u16::from_le_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_le_bytes
257269[ `u16::from_ne_bytes` ] : https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_ne_bytes
0 commit comments