rustHow to borrow from vector in Rust
Rust provides a convenient way to borrow from a vector using the slice
method. This method takes two arguments, the start index and the end index of the slice. The following example code will borrow the elements from index 1 to index 3 from a vector:
let v = vec![1, 2, 3, 4, 5];
let s = &v[1..3];
The output of the above code will be a slice containing the elements [2, 3]
:
[2, 3]
The ## Code explanation
let v = vec![1, 2, 3, 4, 5];
: This line creates a vectorv
containing the elements[1, 2, 3, 4, 5]
.let s = &v[1..3];
: This line creates a slices
containing the elements from index 1 to index 3 from the vectorv
.
Helpful links
Related
- How to borrow with lifetime in Rust
- How to borrow hashmap in Rust
- When to use borrow in Rust
- How to borrow moved value in Rust
- Rust partial borrow example
- How to borrow from iterator in Rust
- How to borrow struct field in Rust
- How to borrow iterator in Rust
- How to borrow as static in Rust
- How to borrow vector element in Rust
More of Rust
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to clear a Rust HashMap?
- Yield example in Rust
- Example of yield_now in Rust?
- How to convert a Rust slice to a fixed array?
- How to use regex to match a group in Rust?
- How to convert a Rust HashMap to a BTreeMap?
- How to yield a thread in Rust?
- How to replace strings using Rust regex?
See more codes...