Field

Type Alias Field 

Source
pub type Field = Range<usize>;
Expand description

Type alias for a byte range (slice index range).

Aliased Type§

pub struct Field {
    pub start: usize,
    pub end: usize,
}

Fields§

§start: usize

The lower bound of the range (inclusive).

§end: usize

The upper bound of the range (exclusive).