Keep line-width within 80 columns
This commit is contained in:
parent
2fd4e604a4
commit
d021d7d7cf
@ -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…
x
Reference in New Issue
Block a user