Home
last modified time | relevance | path

Searched refs:IntoByteSlice (Results 1 – 3 of 3) sorted by relevance

/linux/rust/zerocopy/src/
H A Dbyte_slice.rs159 pub unsafe trait IntoByteSlice<'a>: ByteSlice { trait
184 pub unsafe trait IntoByteSliceMut<'a>: IntoByteSlice<'a> + ByteSliceMut {
225 unsafe impl<'a> IntoByteSlice<'a> for &'a [u8] { impl
301 unsafe impl<'a> IntoByteSlice<'a> for &'a mut [u8] { impl
H A Dref.rs20 ByteSlice, ByteSliceMut, CloneableByteSlice, CopyableByteSlice, IntoByteSlice,
135 impl<'a, B: IntoByteSlice<'a>, T: ?Sized> Ref<B, T> {
146 pub(crate) unsafe fn into_byte_slice(self) -> impl IntoByteSlice<'a> { in into_byte_slice()
611 B: 'a + IntoByteSlice<'a>,
H A Ddeprecated.rs141 B: 'a + IntoByteSlice<'a>,