🚨 Remove unused "std::pin::Pin" imports

This commit is contained in:
Dima Pristupa 2021-10-25 15:41:21 +03:00 committed by Taiki Endo
parent 906fdef2ef
commit c7fa12f35a
1 changed files with 0 additions and 5 deletions

View File

@ -108,8 +108,6 @@ types in Rust.
For now our example will look like this:
```rust, ignore
use std::pin::Pin;
#[derive(Debug)]
struct Test {
a: String,
@ -158,7 +156,6 @@ fn main() {
println!("a: {}, b: {}", test2.a(), test2.b());
}
# use std::pin::Pin;
# #[derive(Debug)]
# struct Test {
# a: String,
@ -210,7 +207,6 @@ fn main() {
println!("a: {}, b: {}", test2.a(), test2.b());
}
# use std::pin::Pin;
# #[derive(Debug)]
# struct Test {
# a: String,
@ -275,7 +271,6 @@ fn main() {
println!("a: {}, b: {}", test2.a(), test2.b());
}
# use std::pin::Pin;
# #[derive(Debug)]
# struct Test {
# a: String,