Hi everyone. Before that, I wrote a post called Rust’s Borrowing and Reference Laws. Today I’ll try to explain the slice type in Rust Before starting, I’ll create a project with cargo; cargo new slice_type cd slice_type Introduction If you worked with languages like Python, you are familiar with slices. Slices don’t have ownership in […]