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

pub struct File { /* fields omitted */ }

Indices of files.

Implementations

impl File[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.

Methods from Deref<Target = usize>

pub const MIN: usize1.43.0[src]

pub const MAX: usize1.43.0[src]

pub const BITS: u32[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 File[src]

type Output = File

The resulting type after applying the + operator.

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

impl Clone for File[src]

impl Copy for File[src]

impl Debug for File[src]

impl Default for File[src]

impl Deref for File[src]

type Target = usize

The resulting type after dereferencing.

impl Display for File[src]

impl Eq for File[src]

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

impl From<usize> for File[src]

impl Hash for File[src]

impl<T> Index<File> for Files<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<File> for Files<T>[src]

impl Into<usize> for File[src]

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

impl Ord for File[src]

impl PartialEq<File> for File[src]

impl PartialEq<usize> for File[src]

impl PartialOrd<File> for File[src]

impl PartialOrd<usize> for File[src]

impl StructuralEq for File[src]

impl StructuralPartialEq for File[src]

Auto Trait Implementations

impl RefUnwindSafe for File

impl Send for File

impl Sync for File

impl Unpin for File

impl UnwindSafe for File

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.