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
The following example is failing by unsatisfied trait bounds:
use embedded_time::{Clock};use embedded_time::duration::{Microseconds};fntest<C:Clock>(clock:C){let duration = Microseconds::new(100);let timer = clock.new_timer(duration).start().unwrap();
timer.remaining();}
Are there further trait bound required? I tried already some compiler suggestions, without success.
I would be very grateful for a brief hint in the right direction. Maybe this information could help others later on.
The following example is failing by unsatisfied trait bounds:
Are there further trait bound required? I tried already some compiler suggestions, without success.
I would be very grateful for a brief hint in the right direction. Maybe this information could help others later on.
Thanks in advance!
Version: v0.12.1 @ rustc 1.60.0-nightly (88fb06a1f 2022-02-05)
The text was updated successfully, but these errors were encountered: