[][src]Struct str_index::StrIndex

pub struct StrIndex { /* fields omitted */ }

An index into a string.

The index is stored as a 32 bit integer, assuming we only deal with text shorter than 4 GiB.

Methods

impl StrIndex[src]

pub fn from_char_len(c: char) -> Self[src]

Index equal to the string length of this char.

Examples

assert_eq!(
    StrIndex::from_char_len('😂'),
    StrIndex::from(4),
);

pub fn from_str_len(s: &str) -> Self[src]

Index equal to the length of this string.

Examples

assert_eq!(
    StrIndex::from_str_len("メカジキ"),
    StrIndex::from(12),
);

pub fn to_usize(self) -> usize[src]

This index as a raw usize.

pub fn checked_add(self, rhs: Self) -> Option<Self>[src]

Checked integer addition.

pub fn checked_sub(self, rhs: Self) -> Option<Self>[src]

Checked integer subtraction.

pub fn range_for(self, len: StrIndex) -> StrRange[src]

A range starting at this index.

Example

let point = StrIndex::from(5);
assert_eq!(
    point.range_for(10.into()),
    StrRange::from(5.into()..15.into()),
);

pub fn range_to(self, end: StrIndex) -> StrRange[src]

A range from this index to another.

Panics

Panics if end < self.

Example

let start = StrIndex::from(0);
let end = StrIndex::from(10);
assert_eq!(
    start.range_to(end),
    StrRange::from(start..end),
);

pub fn as_unit_range(self) -> StrRange[src]

The empty range at this index.

Example

let point = StrIndex::from(10);
assert_eq!(
    point.as_unit_range(),
    point.range_to(point),
);

Trait Implementations

impl From<StrIndex> for u32[src]

impl From<u32> for StrIndex[src]

impl From<StrIndex> for usize[src]

impl Debug for StrIndex[src]

impl Display for StrIndex[src]

impl Sub<StrIndex> for StrIndex[src]

type Output = StrIndex

The resulting type after applying the - operator.

impl<'_> Sub<StrIndex> for &'_ StrIndex[src]

type Output = StrIndex

The resulting type after applying the - operator.

impl<'_> Sub<&'_ StrIndex> for StrIndex[src]

type Output = StrIndex

The resulting type after applying the - operator.

impl<'_, '_> Sub<&'_ StrIndex> for &'_ StrIndex[src]

type Output = StrIndex

The resulting type after applying the - operator.

impl PartialEq<StrIndex> for StrIndex[src]

impl Eq for StrIndex[src]

impl Ord for StrIndex[src]

impl PartialOrd<StrIndex> for StrIndex[src]

impl TryFrom<usize> for StrIndex[src]

type Error = <usize as TryInto<u32>>::Error

The type returned in the event of a conversion error.

impl Add<StrIndex> for StrIndex[src]

type Output = StrIndex

The resulting type after applying the + operator.

impl<'_> Add<StrIndex> for &'_ StrIndex[src]

type Output = StrIndex

The resulting type after applying the + operator.

impl<'_> Add<&'_ StrIndex> for StrIndex[src]

type Output = StrIndex

The resulting type after applying the + operator.

impl<'_, '_> Add<&'_ StrIndex> for &'_ StrIndex[src]

type Output = StrIndex

The resulting type after applying the + operator.

impl<Rhs> AddAssign<Rhs> for StrIndex where
    Self: Add<Rhs, Output = Self>, 
[src]

impl<Rhs> SubAssign<Rhs> for StrIndex where
    Self: Sub<Rhs, Output = Self>, 
[src]

impl RangeBounds<StrIndex> for StrRange[src]

impl Hash for StrIndex[src]

impl Copy for StrIndex[src]

impl StructuralPartialEq for StrIndex[src]

impl StructuralEq for StrIndex[src]

impl Clone for StrIndex[src]

impl Default for StrIndex[src]

Auto Trait Implementations

impl Unpin for StrIndex

impl Send for StrIndex

impl Sync for StrIndex

Blanket Implementations

impl<T> From<T> for T[src]

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

type Error = !

The type returned in the event of a conversion error.

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

impl<T, U> TryInto<U> 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]