Struct tracing_vec::TimelessIndex[][src]

pub struct TimelessIndex { /* fields omitted */ }

An index pointing just to some data in a [TracingVec]. It doesn’t retain information about its movement.

Implementations

impl TimelessIndex[src]

pub unsafe fn from_raw_parts(pos: usize) -> Self[src]

Trait Implementations

impl Add<i16> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i32> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i64> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i8> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<isize> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<u16> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<u32> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<u64> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<u8> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<usize> for TimelessIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<i16> for TimelessIndex[src]

impl AddAssign<i32> for TimelessIndex[src]

impl AddAssign<i64> for TimelessIndex[src]

impl AddAssign<i8> for TimelessIndex[src]

impl AddAssign<isize> for TimelessIndex[src]

impl AddAssign<u16> for TimelessIndex[src]

impl AddAssign<u32> for TimelessIndex[src]

impl AddAssign<u64> for TimelessIndex[src]

impl AddAssign<u8> for TimelessIndex[src]

impl AddAssign<usize> for TimelessIndex[src]

impl Clone for TimelessIndex[src]

impl Copy for TimelessIndex[src]

impl Debug for TimelessIndex[src]

impl<'de> Deserialize<'de> for TimelessIndex[src]

impl Display for TimelessIndex[src]

impl Eq for TimelessIndex[src]

impl Hash for TimelessIndex[src]

impl Ord for TimelessIndex[src]

impl PartialEq<TimelessIndex> for TimelessIndex[src]

impl PartialOrd<TimelessIndex> for TimelessIndex[src]

impl Serialize for TimelessIndex[src]

impl StructuralEq for TimelessIndex[src]

impl StructuralPartialEq for TimelessIndex[src]

impl Sub<i16> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i32> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i64> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i8> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<isize> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<u16> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<u32> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<u64> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<u8> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<usize> for TimelessIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<i16> for TimelessIndex[src]

impl SubAssign<i32> for TimelessIndex[src]

impl SubAssign<i64> for TimelessIndex[src]

impl SubAssign<i8> for TimelessIndex[src]

impl SubAssign<isize> for TimelessIndex[src]

impl SubAssign<u16> for TimelessIndex[src]

impl SubAssign<u32> for TimelessIndex[src]

impl SubAssign<u64> for TimelessIndex[src]

impl SubAssign<u8> for TimelessIndex[src]

impl SubAssign<usize> for TimelessIndex[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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]

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

type Error = Infallible

The type returned in the event of a conversion error.

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.