Lines Matching defs:u8
170 fn into_byte_slice(self) -> &'a [u8]; in into_byte_slice()
195 fn into_byte_slice_mut(self) -> &'a mut [u8]; in into_byte_slice_mut()
200 unsafe impl ByteSlice for &[u8] {} implementation
204 unsafe impl CopyableByteSlice for &[u8] {} implementation
208 unsafe impl CloneableByteSlice for &[u8] {} implementation
212 unsafe impl SplitByteSlice for &[u8] { implementation
225 unsafe impl<'a> IntoByteSlice<'a> for &'a [u8] { implementation
227 fn into_byte_slice(self) -> &'a [u8] { in into_byte_slice()
238 unsafe impl ByteSlice for &mut [u8] {} implementation
243 unsafe impl SplitByteSlice for &mut [u8] { implementation
301 unsafe impl<'a> IntoByteSlice<'a> for &'a mut [u8] { implementation
303 fn into_byte_slice(self) -> &'a [u8] { in into_byte_slice()
313 unsafe impl<'a> IntoByteSliceMut<'a> for &'a mut [u8] { implementation
315 fn into_byte_slice_mut(self) -> &'a mut [u8] { in into_byte_slice_mut()