[][src]Struct rowan::TextUnit

pub struct TextUnit(_);

An offset into text. Offset is represented as u32 storing number of utf8-bytes, but most of the clients should treat it like opaque measure.

Methods

impl TextUnit
[src]

pub fn of_char(c: char) -> TextUnit
[src]

TextUnit equal to the length of this char.

pub fn of_str(s: &str) -> TextUnit
[src]

TextUnit equal to the length of this string.

Panics

Panics if the length of the string is greater than u32::max_value()

pub fn checked_sub(self, other: TextUnit) -> Option<TextUnit>
[src]

pub fn from_usize(size: usize) -> TextUnit
[src]

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

Trait Implementations

impl PartialOrd<TextUnit> for TextUnit
[src]

impl Hash for TextUnit
[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 Copy for TextUnit
[src]

impl<'a> AddAssign<&'a TextUnit> for TextRange
[src]

impl AddAssign<TextUnit> for TextRange
[src]

impl AddAssign<TextUnit> for TextUnit
[src]

impl<'a> AddAssign<&'a TextUnit> for TextUnit
[src]

impl Clone for TextUnit
[src]

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

Performs copy-assignment from source. Read more

impl Default for TextUnit
[src]

impl<'a> Sum<&'a TextUnit> for TextUnit
[src]

impl Sum<TextUnit> for TextUnit
[src]

impl<'a, 'b> Add<&'a TextUnit> for &'b TextRange
[src]

type Output = TextRange

The resulting type after applying the + operator.

impl Add<TextUnit> for TextRange
[src]

type Output = TextRange

The resulting type after applying the + operator.

impl Add<TextUnit> for TextUnit
[src]

type Output = TextUnit

The resulting type after applying the + operator.

impl<'a> Add<&'a TextUnit> for TextUnit
[src]

type Output = TextUnit

The resulting type after applying the + operator.

impl<'a> Add<&'a TextUnit> for TextRange
[src]

type Output = TextRange

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a TextUnit> for &'b TextUnit
[src]

type Output = TextUnit

The resulting type after applying the + operator.

impl<'a> Add<TextUnit> for &'a TextUnit
[src]

type Output = TextUnit

The resulting type after applying the + operator.

impl<'a> Add<TextUnit> for &'a TextRange
[src]

type Output = TextRange

The resulting type after applying the + operator.

impl Ord for TextUnit
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Eq for TextUnit
[src]

impl PartialEq<TextUnit> for TextUnit
[src]

impl<'a, 'b> Sub<&'a TextUnit> for &'b TextRange
[src]

type Output = TextRange

The resulting type after applying the - operator.

impl<'a> Sub<&'a TextUnit> for TextRange
[src]

type Output = TextRange

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a TextUnit> for &'b TextUnit
[src]

type Output = TextUnit

The resulting type after applying the - operator.

impl<'a> Sub<TextUnit> for &'a TextUnit
[src]

type Output = TextUnit

The resulting type after applying the - operator.

impl Sub<TextUnit> for TextUnit
[src]

type Output = TextUnit

The resulting type after applying the - operator.

impl Sub<TextUnit> for TextRange
[src]

type Output = TextRange

The resulting type after applying the - operator.

impl<'a> Sub<TextUnit> for &'a TextRange
[src]

type Output = TextRange

The resulting type after applying the - operator.

impl<'a> Sub<&'a TextUnit> for TextUnit
[src]

type Output = TextUnit

The resulting type after applying the - operator.

impl Display for TextUnit
[src]

impl SubAssign<TextUnit> for TextUnit
[src]

impl<'a> SubAssign<&'a TextUnit> for TextUnit
[src]

impl<'a> SubAssign<&'a TextUnit> for TextRange
[src]

impl SubAssign<TextUnit> for TextRange
[src]

impl Debug for TextUnit
[src]

impl From<u32> for TextUnit
[src]

Auto Trait Implementations

impl Send for TextUnit

impl Sync for TextUnit

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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T