[][src]Struct index_vec::example_generated::CoolIndex

#[repr(transparent)]
pub struct CoolIndex { /* fields omitted */ }

I'm a doc comment on the type.

Methods

impl CoolIndex[src]

pub const MAX_INDEX: usize[src]

If Self::CHECKS_MAX_INDEX is true, we'll assert if trying to produce a value larger than this in any of the ctors that don't have unchecked in their name.

pub const CHECKS_MAX_INDEX: bool[src]

Does this index type assert if asked to construct an index larger than MAX_INDEX?

pub fn new(value: usize) -> Self[src]

Construct this index type from a usize. Alias for from_usize.

pub fn from_raw(value: u32) -> Self[src]

Construct this index type from the wrapped integer type.

pub fn from_foreign<F: Idx>(value: F) -> Self[src]

Construct this index type from one in a different domain

pub const fn from_usize_unchecked(value: usize) -> Self[src]

Construct from a usize without any checks.

pub const fn from_raw_unchecked(raw: u32) -> Self[src]

Construct from the underlying type without any checks.

pub fn from_usize(value: usize) -> Self[src]

Construct this index type from a usize.

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

Get the wrapped index as a usize.

pub fn raw(self) -> u32[src]

Get the wrapped index.

pub fn check_index(v: usize)[src]

Asserts v <= Self::MAX_INDEX unless Self::CHECKS_MAX_INDEX is false.

Trait Implementations

impl Idx for CoolIndex[src]

impl From<CoolIndex> for usize[src]

impl From<usize> for CoolIndex[src]

impl From<CoolIndex> for u32[src]

impl From<u32> for CoolIndex[src]

impl PartialEq<CoolIndex> for CoolIndex[src]

impl PartialEq<usize> for CoolIndex[src]

impl PartialEq<CoolIndex> for usize[src]

impl Eq for CoolIndex[src]

impl Ord for CoolIndex[src]

impl PartialOrd<CoolIndex> for CoolIndex[src]

impl PartialOrd<usize> for CoolIndex[src]

impl PartialOrd<CoolIndex> for usize[src]

impl Hash for CoolIndex[src]

impl Add<usize> for CoolIndex[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<CoolIndex> for usize[src]

type Output = CoolIndex

The resulting type after applying the + operator.

impl Add<CoolIndex> for CoolIndex[src]

type Output = CoolIndex

The resulting type after applying the + operator.

impl Sub<usize> for CoolIndex[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<CoolIndex> for usize[src]

type Output = CoolIndex

The resulting type after applying the - operator.

impl Sub<CoolIndex> for CoolIndex[src]

type Output = CoolIndex

The resulting type after applying the - operator.

impl Rem<usize> for CoolIndex[src]

type Output = Self

The resulting type after applying the % operator.

impl AddAssign<usize> for CoolIndex[src]

impl AddAssign<CoolIndex> for CoolIndex[src]

impl SubAssign<usize> for CoolIndex[src]

impl SubAssign<CoolIndex> for CoolIndex[src]

impl Debug for CoolIndex[src]

impl Display for CoolIndex[src]

impl Copy for CoolIndex[src]

impl Clone for CoolIndex[src]

impl Default for CoolIndex[src]

Auto Trait Implementations

impl Unpin for CoolIndex

impl Send for CoolIndex

impl Sync for CoolIndex

Blanket Implementations

impl<T> From<T> for T[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> 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]