Trait numpy::npyiter::MultiIterMode[][src]

pub trait MultiIterMode {
    type Pre: MultiIterMode;

    const FLAG: npy_uint32;

    fn __private__() -> PrivateGuard;

    fn flags() -> Vec<npy_uint32> { ... }
}
Expand description

A combinator type that represents the mode of an iterator (E.g., Readonly, ReadWrite, Readonly + ReadWrite).

Associated Types

Associated Constants

Required methods

Provided methods

Implementations on Foreign Types

Implementors