[][src]Struct safe_index::examples::clients::idx::Client

pub struct Client { /* fields omitted */ }

Indices of clients.

Methods

impl Client[src]

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

Wraps an int.

pub fn zero() -> Self[src]

Zero.

pub fn one() -> Self[src]

One.

pub fn get(&self) -> usize[src]

Accessor.

pub fn inc(&mut self)[src]

Increments the int.

pub fn dec(&mut self)[src]

Decrements the int.

Trait Implementations

impl Eq for Client[src]

impl Into<usize> for Client[src]

impl<'a> Into<usize> for &'a Client[src]

impl Clone for Client[src]

impl PartialOrd<Client> for Client[src]

impl PartialOrd<usize> for Client[src]

impl PartialEq<Client> for Client[src]

impl PartialEq<usize> for Client[src]

impl Ord for Client[src]

impl From<usize> for Client[src]

impl<'a> From<&'a usize> for Client[src]

impl Copy for Client[src]

impl Hash for Client[src]

impl<T: Into<usize>> Add<T> for Client[src]

type Output = Client

The resulting type after applying the + operator.

impl<T: Into<usize>> AddAssign<T> for Client[src]

impl Deref for Client[src]

type Target = usize

The resulting type after dereferencing.

impl<T> Index<Client> for Clients<T>[src]

type Output = T

The returned type after indexing.

impl Index<Client> for Data[src]

type Output = ClientInfo

The returned type after indexing.

impl<T> IndexMut<Client> for Clients<T>[src]

impl Debug for Client[src]

impl Display for Client[src]

Auto Trait Implementations

impl Sync for Client

impl Send for Client

impl Unpin for Client

impl UnwindSafe for Client

impl RefUnwindSafe for Client

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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