Intermediate
Rust
Q42 / 100
What is the Send trait?
Correct! Well done.
Incorrect.
The correct answer is B) A marker trait indicating ownership of the type can be transferred across thread boundaries
B
Correct Answer
A marker trait indicating ownership of the type can be transferred across thread boundaries
Explanation
Types are Send if sending them to another thread is safe. Most types are Send. Rc<T> is not Send (non-atomic reference counting).
Progress
42/100