pub unsafe fn peek_from_default<T: Default + Peek>(
bytes: *const u8,
) -> (T, *const u8)Expand description
Peek helper for constructing a T by Default initialized stack
allocation.
ยงSafety
-
bytesmust denote a valid pointer to a block of memory. -
bytesmust point to at least the number of bytes returned byPoke::max_size().