Zero Copy
Zero copy is a technique to transfer data without having the CPU to copy one memory area to another.
In Rust, we can do it by passing around the references such as &[u8] or &str that copy the pointer to the original buffer.
Zero copy is a technique to transfer data without having the CPU to copy one memory area to another.
In Rust, we can do it by passing around the references such as &[u8] or &str that copy the pointer to the original buffer.