You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EncodeSet implements Clone, which in turn implements Sized. This has the unfortunate consequence that it becomes impossible to create trait objects of type Box<EncodeSet>; an attempt to do so results in a compiler error with a message that says the trait ``percent_encoding::EncodeSet`` cannot be made into an object. This makes it very difficult to choose an EncodeSet dynamically at runtime in an efficient manner.
The text was updated successfully, but these errors were encountered:
EncodeSet
implementsClone
, which in turn implementsSized
. This has the unfortunate consequence that it becomes impossible to create trait objects of typeBox<EncodeSet>
; an attempt to do so results in a compiler error with a message that saysthe trait ``percent_encoding::EncodeSet`` cannot be made into an object
. This makes it very difficult to choose anEncodeSet
dynamically at runtime in an efficient manner.The text was updated successfully, but these errors were encountered: