We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the structure in the examples in the built book define the structure as below.
pub struct MnistBatcher<B: Backend> { device: B::Device, }
But one problem prevented a suceeding build, that being Clone was not implemented.
#[derive(Clone)] pub struct MnistBatcher<B: Backend> { device: B::Device, }
After making the change building works out of the box and can serve as a starting point.
The text was updated successfully, but these errors were encountered:
Good catch!
We just changed that recently with #1575, looks like we forgot to reflect all of the changes in the book.
I'll fix that now. Thanks again! :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently the structure in the examples in the built book define the structure as below.
But one problem prevented a suceeding build, that being Clone was not implemented.
After making the change building works out of the box and can serve as a starting point.
The text was updated successfully, but these errors were encountered: