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§
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.