1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! 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.
extern crate alloc;
use ManuallyDrop;
use Vec;
/// 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).