Keep line-width within 80 columns

This commit is contained in:
Postmodern 2016-05-19 17:17:17 -07:00
parent 2fd4e604a4
commit d021d7d7cf

View File

@ -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.