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
Say for example I want to perform single-ended measurements on each of the channels in an async environment, I might want to create a function like this:
Unfortunately though this won't compile as the channel can't be copied or cloned, which is required for it to be used in the loop. As far as I can tell I think #[derive(Copy, Clone)] could be added to the struct declaration macro.
The text was updated successfully, but these errors were encountered:
Say for example I want to perform single-ended measurements on each of the channels in an async environment, I might want to create a function like this:
Unfortunately though this won't compile as the channel can't be copied or cloned, which is required for it to be used in the loop. As far as I can tell I think
#[derive(Copy, Clone)]
could be added to the struct declaration macro.The text was updated successfully, but these errors were encountered: