File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ Object safe traits can be the base trait of a [trait object]. A trait is
68
68
* object safe* if it has the following qualities (defined in [ RFC 255] ):
69
69
70
70
* All [ supertraits] must also be object safe.
71
- * It must not require ` Self: Sized` (i.e. ` Sized ` must not be a [ supertrait] [ supertraits ] )
71
+ * ` Sized ` must not be a [ supertrait] [ supertraits ] . In other words, it must not require ` Self: Sized ` .
72
72
* It must not have any associated constants.
73
- * All associated functions must " dispatchable from a trait object" or " explicitly non-dispatchable from a trait object" :
73
+ * All associated functions must either be dispatchable from a trait object or be explicitly non-dispatchable:
74
74
* Dispatchable functions require:
75
75
* Not have any type parameters (although lifetime parameters are allowed),
76
76
* Be a [ method] that does not use ` Self ` except in the type of the receiver.
You can’t perform that action at this time.
0 commit comments