[−][src]Struct str_index::StrIndex
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.
fn sub(self, rhs: StrIndex) -> StrIndex
[src]
impl<'_> Sub<StrIndex> for &'_ StrIndex
[src]
type Output = StrIndex
The resulting type after applying the -
operator.
fn sub(self, rhs: StrIndex) -> StrIndex
[src]
impl<'_> Sub<&'_ StrIndex> for StrIndex
[src]
type Output = StrIndex
The resulting type after applying the -
operator.
fn sub(self, rhs: &StrIndex) -> StrIndex
[src]
impl<'_, '_> Sub<&'_ StrIndex> for &'_ StrIndex
[src]
type Output = StrIndex
The resulting type after applying the -
operator.
fn sub(self, rhs: &StrIndex) -> StrIndex
[src]
impl PartialEq<StrIndex> for StrIndex
[src]
impl Eq for StrIndex
[src]
impl Ord for StrIndex
[src]
fn cmp(&self, other: &StrIndex) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialOrd<StrIndex> for StrIndex
[src]
fn partial_cmp(&self, other: &StrIndex) -> Option<Ordering>
[src]
fn lt(&self, other: &StrIndex) -> bool
[src]
fn le(&self, other: &StrIndex) -> bool
[src]
fn gt(&self, other: &StrIndex) -> bool
[src]
fn ge(&self, other: &StrIndex) -> bool
[src]
impl TryFrom<usize> for StrIndex
[src]
type Error = <usize as TryInto<u32>>::Error
The type returned in the event of a conversion error.
fn try_from(i: usize) -> Result<Self, Self::Error>
[src]
impl Add<StrIndex> for StrIndex
[src]
type Output = StrIndex
The resulting type after applying the +
operator.
fn add(self, rhs: StrIndex) -> StrIndex
[src]
impl<'_> Add<StrIndex> for &'_ StrIndex
[src]
type Output = StrIndex
The resulting type after applying the +
operator.
fn add(self, rhs: StrIndex) -> StrIndex
[src]
impl<'_> Add<&'_ StrIndex> for StrIndex
[src]
type Output = StrIndex
The resulting type after applying the +
operator.
fn add(self, rhs: &StrIndex) -> StrIndex
[src]
impl<'_, '_> Add<&'_ StrIndex> for &'_ StrIndex
[src]
type Output = StrIndex
The resulting type after applying the +
operator.
fn add(self, rhs: &StrIndex) -> StrIndex
[src]
impl<Rhs> AddAssign<Rhs> for StrIndex where
Self: Add<Rhs, Output = Self>,
[src]
Self: Add<Rhs, Output = Self>,
fn add_assign(&mut self, rhs: Rhs)
[src]
impl<Rhs> SubAssign<Rhs> for StrIndex where
Self: Sub<Rhs, Output = Self>,
[src]
Self: Sub<Rhs, Output = Self>,
fn sub_assign(&mut self, rhs: Rhs)
[src]
impl RangeBounds<StrIndex> for StrRange
[src]
fn start_bound(&self) -> Bound<&StrIndex>
[src]
fn end_bound(&self) -> Bound<&StrIndex>
[src]
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
1.35.0[src]
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
impl Hash for StrIndex
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Copy for StrIndex
[src]
impl StructuralPartialEq for StrIndex
[src]
impl StructuralEq for StrIndex
[src]
impl Clone for StrIndex
[src]
fn clone(&self) -> StrIndex
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for StrIndex
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,