Keep line-width within 80 columns
This commit is contained in:
parent
2fd4e604a4
commit
d021d7d7cf
1 changed files with 3 additions and 2 deletions
|
|
@ -55,5 +55,6 @@ struct Foo<T: ?Sized> {
|
|||
}
|
||||
```
|
||||
|
||||
This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both constant size and unsized types.
|
||||
All generic type parameters implicitly have the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.
|
||||
This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both
|
||||
constant size and unsized types. All generic type parameters implicitly have
|
||||
the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue