488 B
488 B
title | pull_requests | |||
---|---|---|---|---|
ComponentsRegistrator no longer implements DerefMut |
|
ComponentsRegistrator
no longer implements DerefMut<Target = Components>
, meaning you won't be able to get a &mut Components
from it. The only two methods on Components
that took &mut self
(any_queued_mut
and num_queued_mut
) have been reimplemented on ComponentsRegistrator
, meaning you won't need to migrate them. Other usages of &mut Components
were unsupported.