From 30eee583b2cd5363c7770ff97c84abb40c63f0dc Mon Sep 17 00:00:00 2001 From: campeis <12007735+campeis@users.noreply.github.com> Date: Sun, 3 Dec 2023 07:00:40 +0100 Subject: [PATCH] improve documentation --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9ae91e1..0b987f8 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,10 @@ fn main() { ``` ### Default fields +If a field is of a type that implemets the Default trait it could be configured +so the default() provided value could be used automatically whithout the need to +call the field's setter method. + ```rust use type_safe_builder_macro::Builder;