//! Zero-copy buffer abstraction for raw byte streams.
//!
//! Provides `RawResource` for managing raw byte buffers without allocation overhead.
//! Uses `ManuallyDrop` to take ownership of data while exposing raw pointers.
//!
//! # Safety
//! Caller is responsible for ensuring the buffer outlives all references to it.
use ManuallyDrop;
/// A zero-copy buffer resource representing "Hilirisasi Data" (Downstreaming Data).
///
/// This struct holds a raw pointer to data that is NOT owned by this struct in the
/// traditional sense (or rather, ownership is manually managed).