pub trait GetIterator<T: IntoSkyhashBytes>: IntoSkyhashAction {
    fn get_iter(&self) -> Iter<'_, T>;
}
Expand description

Implement this trait for methods in actions that need them. See the module level documentation for more information

Required methods

Returns an iterator for self

Implementations on Foreign Types

Implementors