[][src]Struct racer::ByteRange

pub struct ByteRange {
    pub start: BytePos,
    pub end: BytePos,
}

0-based byte range in a file.

Fields

start: BytePos

start of byte position in codes(inclusive)

end: BytePos

end of byte position in codes(exclusive)

Methods

impl ByteRange[src]

pub fn new<P: Into<BytePos>>(start: P, end: P) -> Self[src]

returns new ByteRange from start and end

pub fn len(&self) -> usize[src]

returns the length of the range

pub fn contains(&self, point: BytePos) -> bool[src]

returns if the range contains point or not

pub fn contains_exclusive(&self, point: BytePos) -> bool[src]

returns if the range contains point (except its start point)

pub fn shift<P: Into<BytePos>>(&self, shift: P) -> Self[src]

returns the new range with which its start is self.start + shift, its end is self.end + shift

pub fn to_range(&self) -> Range<usize>[src]

convert the range to std::ops::Range

Trait Implementations

impl PartialEq<ByteRange> for ByteRange[src]

impl PartialEq<BytePos> for ByteRange[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for ByteRange[src]

impl PartialOrd<BytePos> for ByteRange[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for ByteRange[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<Span> for ByteRange[src]

impl Default for ByteRange[src]

impl Copy for ByteRange[src]

impl Hash for ByteRange[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for ByteRange[src]

Auto Trait Implementations

impl Send for ByteRange

impl Sync for ByteRange

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<E> SpecializationError for E[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]