Skip to main content

RangeStepIter

Trait RangeStepIter 

Source
pub trait RangeStepIter: Primitive {
    // Provided method
    fn iter(max_excluded: Self) -> RangeStep<Self>  { ... }
}

Provided Methods§

Source

fn iter(max_excluded: Self) -> RangeStep<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> RangeStepIter for T
where T: Primitive,