allow external use of raw_fire

This commit is contained in:
Rowan S-L 2023-09-20 18:44:44 -04:00
parent 85c7af2494
commit 91821c4e10
1 changed files with 4 additions and 1 deletions

View File

@ -171,8 +171,11 @@ impl DABus {
}
/// the type-erased function that actually runs an event
/// ## You probably want to use `DABus::fire`, not this
/// this function is only made available to allow for defered events (may or may
/// not become part of this crate in the future, currently used in hayselnut)
#[allow(clippy::too_many_lines)] // deal
async fn raw_fire(
pub async fn raw_fire(
&mut self,
def: TypeId,
args: DynVar,