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

pub struct Client { /* fields omitted */ }

Indices of clients.

Implementations

impl Client[src]

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

Wraps an int.

pub const fn zero() -> Self[src]

Zero.

pub const fn one() -> Self[src]

One.

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

Accessor.

pub fn inc(&mut self)[src]

Increments the int.

pub fn dec(&mut self)[src]

Decrements the int.

Methods from Deref<Target = usize>

pub const MIN: usize1.43.0[src]

pub const MAX: usize1.43.0[src]

pub const BITS: u321.53.0[src]

pub fn as_ne_bytes(&self) -> &[u8; 8][src]

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

Return the memory representation of this integer as a byte array in native byte order.

to_ne_bytes should be preferred over this whenever possible.

Examples

#![feature(num_as_ne_bytes)]
let num = 0x1234567890123456usize;
let bytes = num.as_ne_bytes();
assert_eq!(
    bytes,
    if cfg!(target_endian = "big") {
        &[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]
    } else {
        &[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]
    }
);

Trait Implementations

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 Clone for Client[src]

impl Copy for Client[src]

impl Debug for Client[src]

impl Default for Client[src]

impl Deref for Client[src]

type Target = usize

The resulting type after dereferencing.

impl Display for Client[src]

impl Eq for Client[src]

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

impl From<usize> for Client[src]

impl Hash for Client[src]

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 Into<usize> for Client[src]

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

impl Ord for Client[src]

impl PartialEq<Client> for Client[src]

impl PartialEq<usize> for Client[src]

impl PartialOrd<Client> for Client[src]

impl PartialOrd<usize> for Client[src]

impl StructuralEq for Client[src]

impl StructuralPartialEq for Client[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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> 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.