Doc for Store::execute_hooks_for_id()

This commit is contained in:
Matthias Beyer 2017-02-20 16:05:07 +01:00
parent 77d5fcc2d0
commit 0c3cea692f

View file

@ -983,6 +983,12 @@ impl Store {
}
/// Execute all hooks from all aspects for a Store Id object.
///
/// # Return value
///
/// - () on success
/// - Error on the first failing hook.
///
fn execute_hooks_for_id(&self,
aspects: Arc<Mutex<Vec<Aspect>>>,
id: &StoreId)