Range

Type Alias Range 

Source
pub type Range = Range;

Aliased Type§

#[repr(C)]
pub struct Range { pub start: u32, pub end: u32, }

Fields§

§start: u32

The start of the range (inclusive).

§end: u32

The end of the range (exclusive).

Trait Implementations§

Source§

impl From<Range<u32>> for Range

Source§

fn from(value: Range<u32>) -> Self

Converts to this type from the input type.
Source§

impl From<Range<usize>> for Range

Source§

fn from(value: Range<usize>) -> Self

Converts to this type from the input type.