rustHow to get pointer of struct in Rust
In Rust, you can get a pointer to a struct by using the &
operator. For example, if you have a struct called MyStruct
, you can get a pointer to it by writing &MyStruct
. This will return a pointer to the struct, which can then be used to access the fields of the struct. Additionally, you can use the &mut
operator to get a mutable pointer to the struct, which can be used to modify the fields of the struct. For example:
struct MyStruct {
field1: i32,
field2: i32,
}
fn main() {
let my_struct = MyStruct { field1: 1, field2: 2 };
let my_struct_ptr = &my_struct;
let my_struct_mut_ptr = &mut my_struct;
println!("field1: {}", my_struct_ptr.field1);
println!("field2: {}", my_struct_mut_ptr.field2);
my_struct_mut_ptr.field2 = 3;
println!("field2: {}", my_struct_mut_ptr.field2);
}
Output example:
field1: 1
field2: 2
field2: 3
Explanation
The MyStruct
struct is declared with two fields, field1
and field2
. Then, a pointer to MyStruct
is created using the &
operator, and a mutable pointer is created using the &mut
operator. The fields of the struct can then be accessed using the pointer, and the mutable pointer can be used to modify the fields of the struct.
Helpful links
Related
- How to get pointer to variable in Rust
- Example of pointer offset in Rust
- How to cast pointer to usize in Rust
- Creating pointer from specific address in Rust
- Weak pointer example in Rust
- How to get address of pointer in Rust
- How to do pointer write in Rust
- How to create pointer in Rust
- How to get next pointer in Rust
More of Rust
- How to replace a capture group using Rust regex?
- How to split a string with Rust regex?
- How to use regex to match a double quote in Rust?
- How to replace strings using Rust regex?
- How to use regex with bytes in Rust?
- How to perform matrix operations in Rust?
- How to yield a thread in Rust?
- How to match a URL with a regex in Rust?
- How to get an entry from a HashSet in Rust?
- How to use an enum in a Rust HashMap?
See more codes...