Rust-Property

![License] ![Travis CI] ![Crate Badge] ![Crate Doc]

Generate several common methods for structs automatically.

Usage

In Action

Original Code

```rust use property::Property;

[derive(Copy, Clone)]

pub enum Species { Dog, Cat, Bird, Other, }

[derive(Property)]

[property(get(public), set(private), mut(disable), ord(desc))]

pub struct Pet { #[property(get(name = "identification"), set(disable), ord(asc, 2))] id: [u8; 32], name: String, #[property(set(crate, type = "own"), ord(0))] age: u32, #[property(get(type = "copy"))] species: Species, #[property(get(prefix = "is"), ord(1))] died: bool, #[property(get(type = "clone"))] owner: String, familymembers: Vec, #[property(get(type = "ref"), mut(crate))] info: String, #[property(mut(public, suffix = "mut"))] note: Option, } ```

Generated Code

rust impl Pet { #[inline] pub fn identification(&self) -> &[u8] { &self.id[..] } #[inline] pub fn name(&self) -> &str { &self.name[..] } #[inline] fn set_name<T: Into<String>>(&mut self, val: T) -> &mut Self { self.name = val.into(); self } #[inline] pub fn age(&self) -> u32 { self.age } #[inline] pub(crate) fn set_age<T: Into<u32>>(mut self, val: T) -> Self { self.age = val.into(); self } #[inline] pub fn species(&self) -> Species { self.species } #[inline] fn set_species<T: Into<Species>>(&mut self, val: T) -> &mut Self { self.species = val.into(); self } #[inline] pub fn is_died(&self) -> bool { self.died } #[inline] fn set_died<T: Into<bool>>(&mut self, val: T) -> &mut Self { self.died = val.into(); self } #[inline] pub fn owner(&self) -> String { self.owner.clone() } #[inline] fn set_owner<T: Into<String>>(&mut self, val: T) -> &mut Self { self.owner = val.into(); self } #[inline] pub fn family_members(&self) -> &[String] { &self.family_members[..] } #[inline] fn set_family_members<T: Into<String>>( &mut self, val: impl IntoIterator<Item = T>, ) -> &mut Self { self.family_members = val.into_iter().map(Into::into).collect(); self } #[inline] pub fn info(&self) -> &String { &self.info } #[inline] fn set_info<T: Into<String>>(&mut self, val: T) -> &mut Self { self.info = val.into(); self } #[inline] pub(crate) fn mut_info(&mut self) -> &mut String { &mut self.info } #[inline] pub fn note(&self) -> Option<&String> { self.note.as_ref() } #[inline] fn set_note<T: Into<Option<String>>>(&mut self, val: T) -> &mut Self { self.note = val.into(); self } #[inline] pub fn note_mut(&mut self) -> &mut Option<String> { &mut self.note } } impl PartialEq for Pet { fn eq(&self, other: &Self) -> bool { self.age == other.age && self.died == other.died && self.id == other.id } } impl PartialOrd for Pet { fn partial_cmp(&self, other: &Self) -> Option<::core::cmp::Ordering> { let result = other.age.partial_cmp(&self.age); if result != Some(::core::cmp::Ordering::Equal) { return result; } let result = other.died.partial_cmp(&self.died); if result != Some(::core::cmp::Ordering::Equal) { return result; } let result = self.id.partial_cmp(&other.id); if result != Some(::core::cmp::Ordering::Equal) { return result; } Some(::core::cmp::Ordering::Equal) } }

Enjoy it!

License

Licensed under either of [Apache License, Version 2.0] or [MIT License], at your option.