1 unstable release

0.1.0 May 21, 2022

#15 in #defaults

Download history 1/week @ 2024-12-08 6/week @ 2024-12-15 41/week @ 2025-01-19 20/week @ 2025-01-26 4/week @ 2025-02-02 7/week @ 2025-02-16 21/week @ 2025-02-23 50/week @ 2025-03-02 51/week @ 2025-03-09 78/week @ 2025-03-16

200 downloads per month

MIT license

7KB
83 lines

sensible

This is a crate for a more configurable derive macro to derive an implementation for Default. Rust's std::default module provides a derive implementation, but for structs, it requires that:

  • Every member on the struct implement Default.
  • Every member on the struct must use the Default implementation.

This is fine for many cases, but consider the case of a large struct where just one or two fields should default to something other than their type's Default implementation: now you have to implement the whole thing.

sensible provides a configurable derive macro that allows giving certain fields alternate default values.

Example

use sensible::Default;

#[derive(Default)]
struct Foo {
  a: u32,  // default value: 0

  #[default(42)]
  b: u32,  // default value: 42
}

Dependencies

~2MB
~45K SLoC