ostrosco / comms-rs

A library for building DSP communication pipelines.
MIT License
13 stars 1 forks source link

Removing the automatic new() implementation from the node derive macro. #82

Closed ostrosco closed 5 years ago

ostrosco commented 5 years ago

For a more consistent experience, #[derive(Node)] no longer implements new() automatically. This puts the onus on the node author, but this allows for documentation of new() and significantly more flexibility in node constructors.

garbagetrash commented 5 years ago

Looks good to me, really liking the new new syntax for everything, way cleaner.