[][src]Enum numpy::npyiter::NpyIterFlag

pub enum NpyIterFlag {
    CommonDtype,
    RefsOk,
    ZerosizeOk,
    ReduceOk,
    Ranged,
    Buffered,
    GrowInner,
    DelayBufAlloc,
    DontNegateStrides,
    CopyIfOverlap,
}

Flags for constructing an iterator. For the meanings of each flag, readers can refer to the numpy document.

Note that this enum doesn't provide all flags in the numpy C-API. If you have any inconvenience about that, please file an issue.

Variants

CommonDtype
RefsOk
ZerosizeOk
ReduceOk
Ranged
Buffered
GrowInner
DelayBufAlloc
DontNegateStrides
CopyIfOverlap

Trait Implementations

impl Clone for NpyIterFlag[src]

impl Copy for NpyIterFlag[src]

impl Debug for NpyIterFlag[src]

impl Eq for NpyIterFlag[src]

impl PartialEq<NpyIterFlag> for NpyIterFlag[src]

impl StructuralEq for NpyIterFlag[src]

impl StructuralPartialEq for NpyIterFlag[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.