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
Currently, events have to use immutably borrowed AcpiSystem due to how they're handled and stored inside AcpiSystem itself. As a consequence, they either have to queue the actions somewhere else (to be handled outside of acpi-system crate) or, as it is implemented now, return an EventAction to be taken by the AcpiSystem, I don't really like this idea and there might possibly be a better solution to this.
The text was updated successfully, but these errors were encountered:
Currently, events have to use immutably borrowed
AcpiSystem
due to how they're handled and stored insideAcpiSystem
itself. As a consequence, they either have to queue the actions somewhere else (to be handled outside ofacpi-system
crate) or, as it is implemented now, return anEventAction
to be taken by theAcpiSystem
, I don't really like this idea and there might possibly be a better solution to this.The text was updated successfully, but these errors were encountered: