Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
704 views
in Technique[技术] by (71.8m points)

rust - Is it possible to add your own derivable traits, or are these fixed by the compiler?

The derive attribute allows certain traits to be automatically implemented for data structures. The reference gives the example:

#[derive(PartialEq, Clone)]
struct Foo<T> {
   a: i32,
   b: T
}

Is it possible to add your own derivable traits, or are these fixed by the compiler?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A small number of derivable traits are hard-coded in the compiler.

Rust 1.15 stabilized procedural macros which allow for the creation of custom derive attributes. If you need to support stable versions of Rust before 1.15, there is a crate that uses macro hackery to derive custom traits.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...