pub trait AsyncIterableHook: Hook<()> {
    fn into_iter(self) -> IterHook<Self>
    where
        Self: Sized
, { ... } fn iter_mut(&mut self) -> IterHook<&mut Self> { ... } }
Expand description

Hooks that takes no args.

Provided Methods§

Implementors§