Enum ndarray_ndimage::PadMode[][src]

pub enum PadMode {
    Reflect,
    Symmetric,
    Wrap,
}
Expand description

Method that will be used to select the padded values.

Variants

Reflect

Pads with the reflection of the vector mirrored on the first and last values of the vector along each axis.

Symmetric

Pads with the reflection of the vector mirrored along the edge of the array.

Wrap

Pads with the wrap of the vector along the axis. The first values are used to pad the end and the end values are used to pad the beginning.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.