You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, functionality covered by embedded-hal is only implemented via the embedded-hal traits. This means anyone using those methods must import the traits.
It might be more convenient to implement all methods directly on the types, and offer the traits in addition. Then the trait methods would basically just proxy the inherent implementations. I'm not sure though if there are any complications here regarding name collisions between trait methods and inherent methods.
The text was updated successfully, but these errors were encountered:
Currently, functionality covered by embedded-hal is only implemented via the embedded-hal traits. This means anyone using those methods must import the traits.
It might be more convenient to implement all methods directly on the types, and offer the traits in addition. Then the trait methods would basically just proxy the inherent implementations. I'm not sure though if there are any complications here regarding name collisions between trait methods and inherent methods.
The text was updated successfully, but these errors were encountered: