pub struct Ref<B, T: ?Sized>(/* private fields */);
Expand description
A typed reference derived from a byte slice.
A Ref<B, T>
is a reference to a T
which is stored in a byte slice, B
.
Unlike a native reference (&T
or &mut T
), Ref<B, T>
has the same
mutability as the byte slice it was constructed from (B
).
§Examples
Ref
can be used to treat a sequence of bytes as a structured type, and
to read and write the fields of that type as if the byte slice reference
were simply a reference to that type.
use zerocopy::*;
#[derive(FromBytes, IntoBytes, KnownLayout, Immutable, Unaligned)]
#[repr(C)]
struct UdpHeader {
src_port: [u8; 2],
dst_port: [u8; 2],
length: [u8; 2],
checksum: [u8; 2],
}
#[derive(FromBytes, IntoBytes, KnownLayout, Immutable, Unaligned)]
#[repr(C, packed)]
struct UdpPacket {
header: UdpHeader,
body: [u8],
}
impl UdpPacket {
pub fn parse<B: ByteSlice>(bytes: B) -> Option<Ref<B, UdpPacket>> {
Ref::from_bytes(bytes).ok()
}
}
Implementations§
Source§impl<B, T> Ref<B, T>
impl<B, T> Ref<B, T>
Sourcepub fn from_bytes(source: B) -> Result<Ref<B, T>, CastError<B, T>>
pub fn from_bytes(source: B) -> Result<Ref<B, T>, CastError<B, T>>
Constructs a Ref
from a byte slice.
If the length of source
is not a valid size of T
, or
if source
is not appropriately aligned for T
, this returns Err
. If
T: Unaligned
, you can infallibly discard the alignment
error.
T
may be a sized type, a slice, or a slice DST.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_bytes(&b"UU"[..]); // ⚠ Compile Error!
Source§impl<B, T> Ref<B, T>
impl<B, T> Ref<B, T>
Sourcepub fn from_prefix(source: B) -> Result<(Ref<B, T>, B), CastError<B, T>>
pub fn from_prefix(source: B) -> Result<(Ref<B, T>, B), CastError<B, T>>
Constructs a Ref
from the prefix of a byte slice.
This method computes the largest possible size of T
that
can fit in the leading bytes of source
, then attempts to return both a
Ref
to those bytes, and a reference to the remaining bytes. If there
are insufficient bytes, or if source
is not appropriately aligned,
this returns Err
. If T: Unaligned
, you can
infallibly discard the alignment error.
T
may be a sized type, a slice, or a slice DST.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_prefix(&b"UU"[..]); // ⚠ Compile Error!
Sourcepub fn from_suffix(source: B) -> Result<(B, Ref<B, T>), CastError<B, T>>
pub fn from_suffix(source: B) -> Result<(B, Ref<B, T>), CastError<B, T>>
Constructs a Ref
from the suffix of a byte slice.
This method computes the largest possible size of T
that
can fit in the trailing bytes of source
, then attempts to return both
a Ref
to those bytes, and a reference to the preceding bytes. If there
are insufficient bytes, or if that suffix of source
is not
appropriately aligned, this returns Err
. If T: Unaligned
, you can infallibly discard the alignment
error.
T
may be a sized type, a slice, or a slice DST.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_suffix(&b"UU"[..]); // ⚠ Compile Error!
Source§impl<B, T> Ref<B, T>
impl<B, T> Ref<B, T>
Sourcepub fn from_bytes_with_elems(
source: B,
count: usize,
) -> Result<Ref<B, T>, CastError<B, T>>
pub fn from_bytes_with_elems( source: B, count: usize, ) -> Result<Ref<B, T>, CastError<B, T>>
Constructs a Ref
from the given bytes with DST length equal to count
without copying.
This method attempts to return a Ref
to the prefix of source
interpreted as a T
with count
trailing elements, and a reference to
the remaining bytes. If the length of source
is not equal to the size
of Self
with count
elements, or if source
is not appropriately
aligned, this returns Err
. If T: Unaligned
, you can
infallibly discard the alignment error.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_bytes_with_elems(&b"UU"[..], 42); // ⚠ Compile Error!
Source§impl<B, T> Ref<B, T>
impl<B, T> Ref<B, T>
Sourcepub fn from_prefix_with_elems(
source: B,
count: usize,
) -> Result<(Ref<B, T>, B), CastError<B, T>>
pub fn from_prefix_with_elems( source: B, count: usize, ) -> Result<(Ref<B, T>, B), CastError<B, T>>
Constructs a Ref
from the prefix of the given bytes with DST
length equal to count
without copying.
This method attempts to return a Ref
to the prefix of source
interpreted as a T
with count
trailing elements, and a reference to
the remaining bytes. If there are insufficient bytes, or if source
is
not appropriately aligned, this returns Err
. If T: Unaligned
, you can infallibly discard the alignment
error.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_prefix_with_elems(&b"UU"[..], 42); // ⚠ Compile Error!
Sourcepub fn from_suffix_with_elems(
source: B,
count: usize,
) -> Result<(B, Ref<B, T>), CastError<B, T>>
pub fn from_suffix_with_elems( source: B, count: usize, ) -> Result<(B, Ref<B, T>), CastError<B, T>>
Constructs a Ref
from the suffix of the given bytes with DST length
equal to count
without copying.
This method attempts to return a Ref
to the suffix of source
interpreted as a T
with count
trailing elements, and a reference to
the preceding bytes. If there are insufficient bytes, or if that suffix
of source
is not appropriately aligned, this returns Err
. If T: Unaligned
, you can infallibly discard the alignment
error.
§Compile-Time Assertions
This method cannot yet be used on unsized types whose dynamically-sized component is zero-sized. Attempting to use this method on such types results in a compile-time assertion error; e.g.:
use zerocopy::*;
#[derive(Immutable, KnownLayout)]
#[repr(C)]
struct ZSTy {
leading_sized: u16,
trailing_dst: [()],
}
let _ = Ref::<_, ZSTy>::from_suffix_with_elems(&b"UU"[..], 42); // ⚠ Compile Error!
Source§impl<'a, B, T> Ref<B, T>
impl<'a, B, T> Ref<B, T>
Sourcepub fn into_ref(r: Self) -> &'a T
pub fn into_ref(r: Self) -> &'a T
Converts this Ref
into a reference.
into_ref
consumes the Ref
, and returns a reference to T
.
Note: this is an associated function, which means that you have to call
it as Ref::into_ref(r)
instead of r.into_ref()
. This is so that
there is no conflict with a method on the inner type.
Source§impl<'a, B, T> Ref<B, T>
impl<'a, B, T> Ref<B, T>
Sourcepub fn into_mut(r: Self) -> &'a mut T
pub fn into_mut(r: Self) -> &'a mut T
Converts this Ref
into a mutable reference.
into_mut
consumes the Ref
, and returns a mutable reference to T
.
Note: this is an associated function, which means that you have to call
it as Ref::into_mut(r)
instead of r.into_mut()
. This is so that
there is no conflict with a method on the inner type.
Source§impl<B, T> Ref<B, T>where
B: ByteSliceMut,
T: ?Sized,
impl<B, T> Ref<B, T>where
B: ByteSliceMut,
T: ?Sized,
Source§impl<B, T> Ref<B, T>where
B: ByteSliceMut,
T: IntoBytes,
impl<B, T> Ref<B, T>where
B: ByteSliceMut,
T: IntoBytes,
Trait Implementations§
Source§impl<B: CloneableByteSlice + Clone, T: ?Sized> Clone for Ref<B, T>
impl<B: CloneableByteSlice + Clone, T: ?Sized> Clone for Ref<B, T>
Source§impl<T, B> Ord for Ref<B, T>
impl<T, B> Ord for Ref<B, T>
Source§impl<T, B> PartialOrd for Ref<B, T>
impl<T, B> PartialOrd for Ref<B, T>
impl<B: CopyableByteSlice + Copy, T: ?Sized> Copy for Ref<B, T>
impl<T, B> Eq for Ref<B, T>
Auto Trait Implementations§
impl<B, T> Freeze for Ref<B, T>where
B: Freeze,
T: ?Sized,
impl<B, T> RefUnwindSafe for Ref<B, T>where
B: RefUnwindSafe,
T: RefUnwindSafe + ?Sized,
impl<B, T> Send for Ref<B, T>where
B: Send,
T: Send + ?Sized,
impl<B, T> Sync for Ref<B, T>where
B: Sync,
T: Sync + ?Sized,
impl<B, T> Unpin for Ref<B, T>where
B: Unpin,
T: Unpin + ?Sized,
impl<B, T> UnwindSafe for Ref<B, T>where
B: UnwindSafe,
T: UnwindSafe + ?Sized,
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)