Simple boilerplate library for getters.
The need for this library came about when I was making various data structures for JSON to deserialize into. These data structures had many fields in them and weren't going to change once created. Of course one could just use pub
everywhere.
Getters will be generated according to convention. This means that the generated methods will reside within the struct namespace.
There is no mutability in getters and it isn't planned. There are no setters either nor will there ever be.
Add to your Cargo.toml
:
toml
[dependencies]
derive-getters = "0.0.8"
Then put this in your rust project root. ```rust
extern crate derive_getters;
or
rust
``` PS. This way is better. It makes the code run faster.
When you have a struct you want to automatically derive getters for... Just add the derive at the top like so; ```rust
pub struct MyCheesyStruct { x: i64, y: i64, } ```
A new impl will be produced for MyCheesyStruct
.
```rust
impl MyCheesyStruct {
pub fn get_x(&self) -> &i64 {
&self.x
}
pub fn get_y(&self) -> &i64 {
&self.y
}
} ```
This crate can also handle structs with simple generic parameters. Check docs for further details. ```rust
pub struct StructWithGeneric
&
immutable reference to their field. This means for some types it can get awkward.