/// Return a byte slice view of any sized value.
///
/// Safety: This performs a plain reinterpretation of the memory of `T` as bytes.
/// The caller must ensure the value is POD-like (e.g., `#[repr(C)]` push-constant structs
/// containing only integer/floating fields). This helper avoids repeated unsafe blocks
/// across the codebase.