Skip to content
New issue

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

task_1_2: Repeat no Unpin requirement in task #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 1_concepts/1_2_box_pin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ __Estimated time__: 1 day
#### Important:
##### THERE HAS TO BE NO `unsafe` CODE (DON'T USE `unsafe`)
> - `mut_me_somehow` must mutate self somehow.
> - You can add trait bounds to the types.
> - You can add trait bounds to the types. (using `Unpin` trait bound is not allowed)
> - Write simple tests to demonstrate mut_me_somehow.
> - you may use modules to avoid conflicting implementations


```rust
trait SayHi: fmt::Debug {
Expand Down
Loading