File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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
6868* object safe* if it has the following qualities (defined in [ RFC 255] ):
6969
7070* 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 ` .
7272* 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:
7474 * Dispatchable functions require:
7575 * Not have any type parameters (although lifetime parameters are allowed),
7676 * 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