rustHow to copy struct in Rust
Copying a struct in Rust is done using the clone()
method. This method creates a deep copy of the struct, meaning that all fields are copied as well.
Example
#[derive(Clone, Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
let p1 = Point { x: 1, y: 2 };
let p2 = p1.clone();
println!("p1: {:?}", p1);
println!("p2: {:?}", p2);
}
Output example
p1: Point { x: 1, y: 2 }
p2: Point { x: 1, y: 2 }
Code explanation
#[derive(Clone, Debug)]
: This line is necessary for theclone()
method to work. It derives theClone
andDebug
traits for thePoint
struct.let p1 = Point { x: 1, y: 2 };
: This line creates aPoint
struct with the fieldsx
andy
set to1
and2
respectively.let p2 = p1.clone();
: This line creates a deep copy of thePoint
structp1
and stores it inp2
.println!("p1: {:?}", p1);
: This line prints thePoint
structp1
to the console.println!("p2: {:?}", p2);
: This line prints thePoint
structp2
to the console.
Helpful links
Related
- Example of struct private field in Rust
- Example of struct with vector field in Rust
- Example of Rust struct with closure
- How to update struct in Rust
- Example of struct public field in Rust
- Example of struct of structs in Rust
- Rust struct with one field example
- How to extend struct from another struct in Rust
- How to write struct to json file in Rust
- How to create struct from hashmap in Rust
More of Rust
- How to replace a capture group using Rust regex?
- How to map an array in Rust
- How to replace strings using Rust regex?
- How to parse a file with Rust regex?
- How to match the end of a line in a Rust regex?
- How to use regex to match a double quote in Rust?
- How to match whitespace with a regex in Rust?
- How to push an element to a Rust slice?
- How to escape dots with regex in Rust?
- How to split a string with Rust regex?
See more codes...