|
/// Construct a new `Feed` instance. |
|
// TODO: make this an actual builder pattern. |
|
// https://deterministic.space/elegant-apis-in-rust.html#builder-pattern |
|
#[derive(Debug)] |
|
pub struct FeedBuilder<T> |
The link referenced shows a crate that offers a macro to automatically derive builders for structs. It seems like it should be relatively easy to use derive_builder with Feed. Is the intention to use this macro, or write a custom builder?