Skip to main content

RangeOwned

Trait RangeOwned 

Source
pub trait RangeOwned {
    // Required method
    fn range_owned(start: i32, count: u32) -> Vec<i32>;
}
Expand description

Creates an owned sequence of consecutive i32 values.

Required Methods§

Source

fn range_owned(start: i32, count: u32) -> Vec<i32>

Creates count values starting at start.

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§