Merge branch 'master' into edit

This commit is contained in:
Sunface 2022-11-07 08:27:51 +08:00 committed by GitHub
commit 8c499f89ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 34 additions and 32 deletions

View File

@ -108,7 +108,9 @@ fn main() {
## T: 'static
As a trait bound, it means the type does not contain any non-static references. Eg. the receiver can hold on to the type for as long as they want and it will never become invalid until they drop it.
It's important to understand this means that any owned data always passes a `'static `lifetime bound, but a reference to that owned data generally does no.
It's important to understand this means that any owned data always passes a `'static `lifetime bound, but a reference to that owned data generally does not.
5,🌟🌟
```rust,editable

View File

@ -114,6 +114,6 @@ fn main() {
&mut value => value.push_str(" world!")
}
}
````
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it