Struct rend::LittleEndian[][src]

#[repr(transparent)]
pub struct LittleEndian<T> { /* fields omitted */ }
Expand description

A wrapper for big-endian types.

Implementations

impl LittleEndian<i16>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> i16[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<i16>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<i16>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<i16>[src]

Creates a BigEndian from this value

impl LittleEndian<i32>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> i32[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<i32>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<i32>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<i32>[src]

Creates a BigEndian from this value

impl LittleEndian<i64>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> i64[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<i64>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<i64>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<i64>[src]

Creates a BigEndian from this value

impl LittleEndian<i128>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> i128[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<i128>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<i128>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<i128>[src]

Creates a BigEndian from this value

impl LittleEndian<u16>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> u16[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<u16>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<u16>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<u16>[src]

Creates a BigEndian from this value

impl LittleEndian<u32>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> u32[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<u32>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<u32>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<u32>[src]

Creates a BigEndian from this value

impl LittleEndian<u64>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> u64[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<u64>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<u64>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<u64>[src]

Creates a BigEndian from this value

impl LittleEndian<u128>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> u128[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<u128>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<u128>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<u128>[src]

Creates a BigEndian from this value

impl LittleEndian<f32>[src]

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

Creates a new value from a native-endian value

pub fn value(self) -> f32[src]

Converts the value to a native-endian value

pub fn to_ne(self) -> NativeEndian<f32>[src]

Creates a NativeEndian from this value

pub fn to_le(self) -> LittleEndian<f32>[src]

Creates a LittleEndian from this value

pub fn to_be(self) -> BigEndian<f32>[src]

Creates a BigEndian from this value

impl LittleEndian<f64>[src]

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

Creates a new value from a native-endian value

pub fn value(self) -> f64[src]

Converts the value to a native-endian value

pub fn to_ne(self) -> NativeEndian<f64>[src]

Creates a NativeEndian from this value

pub fn to_le(self) -> LittleEndian<f64>[src]

Creates a LittleEndian from this value

pub fn to_be(self) -> BigEndian<f64>[src]

Creates a BigEndian from this value

impl LittleEndian<char>[src]

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

Creates a new value from a native-endian value

pub fn value(self) -> char[src]

Converts the value to a native-endian value

pub fn to_ne(self) -> NativeEndian<char>[src]

Creates a NativeEndian from this value

pub fn to_le(self) -> LittleEndian<char>[src]

Creates a LittleEndian from this value

pub fn to_be(self) -> BigEndian<char>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroI16>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroI16[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroI16>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroI16>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroI16>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroI32>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroI32[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroI32>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroI32>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroI32>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroI64>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroI64[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroI64>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroI64>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroI64>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroI128>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroI128[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroI128>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroI128>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroI128>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroU16>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroU16[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroU16>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroU16>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroU16>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroU32>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroU32[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroU32>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroU32>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroU32>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroU64>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroU64[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroU64>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroU64>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroU64>[src]

Creates a BigEndian from this value

impl LittleEndian<NonZeroU128>[src]

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

Creates a new value from a native-endian value

pub const fn value(self) -> NonZeroU128[src]

Converts the value to a native-endian value

pub const fn to_ne(self) -> NativeEndian<NonZeroU128>[src]

Creates a NativeEndian from this value

pub const fn to_le(self) -> LittleEndian<NonZeroU128>[src]

Creates a LittleEndian from this value

pub const fn to_be(self) -> BigEndian<NonZeroU128>[src]

Creates a BigEndian from this value

impl LittleEndian<AtomicI16>[src]

pub fn compare_exchange(
    &self,
    current: i16,
    new: i16,
    success: Ordering,
    failure: Ordering
) -> Result<i16, i16>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: i16, order: Ordering) -> i16[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: i16, order: Ordering) -> i16[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: i16, order: Ordering) -> i16[src]

Maximum with the current value.

pub fn fetch_min(&self, val: i16, order: Ordering) -> i16[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: i16, order: Ordering) -> i16[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: i16, order: Ordering) -> i16[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: i16, order: Ordering) -> i16[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(i16) -> Option<i16>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<i16, i16>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: i16, order: Ordering) -> i16[src]

Bitwise “xor” with the current value.

pub fn into_inner(self) -> i16[src]

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> i16[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: i16, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: i16, order: Ordering) -> i16[src]

Stores a value into the atomic integer, returning the previous value.

impl LittleEndian<AtomicI32>[src]

pub fn compare_exchange(
    &self,
    current: i32,
    new: i32,
    success: Ordering,
    failure: Ordering
) -> Result<i32, i32>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: i32, order: Ordering) -> i32[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: i32, order: Ordering) -> i32[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: i32, order: Ordering) -> i32[src]

Maximum with the current value.

pub fn fetch_min(&self, val: i32, order: Ordering) -> i32[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: i32, order: Ordering) -> i32[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: i32, order: Ordering) -> i32[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: i32, order: Ordering) -> i32[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(i32) -> Option<i32>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<i32, i32>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: i32, order: Ordering) -> i32[src]

Bitwise “xor” with the current value.

pub fn into_inner(self) -> i32[src]

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> i32[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: i32, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: i32, order: Ordering) -> i32[src]

Stores a value into the atomic integer, returning the previous value.

impl LittleEndian<AtomicI64>[src]

pub fn compare_exchange(
    &self,
    current: i64,
    new: i64,
    success: Ordering,
    failure: Ordering
) -> Result<i64, i64>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: i64, order: Ordering) -> i64[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: i64, order: Ordering) -> i64[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: i64, order: Ordering) -> i64[src]

Maximum with the current value.

pub fn fetch_min(&self, val: i64, order: Ordering) -> i64[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: i64, order: Ordering) -> i64[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: i64, order: Ordering) -> i64[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: i64, order: Ordering) -> i64[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(i64) -> Option<i64>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<i64, i64>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: i64, order: Ordering) -> i64[src]

Bitwise “xor” with the current value.

pub fn into_inner(self) -> i64[src]

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> i64[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: i64, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: i64, order: Ordering) -> i64[src]

Stores a value into the atomic integer, returning the previous value.

impl LittleEndian<AtomicU16>[src]

pub fn compare_exchange(
    &self,
    current: u16,
    new: u16,
    success: Ordering,
    failure: Ordering
) -> Result<u16, u16>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: u16, order: Ordering) -> u16[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: u16, order: Ordering) -> u16[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: u16, order: Ordering) -> u16[src]

Maximum with the current value.

pub fn fetch_min(&self, val: u16, order: Ordering) -> u16[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: u16, order: Ordering) -> u16[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: u16, order: Ordering) -> u16[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: u16, order: Ordering) -> u16[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(u16) -> Option<u16>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<u16, u16>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: u16, order: Ordering) -> u16[src]

Bitwise “xor” with the current value.

pub fn into_inner(self) -> u16[src]

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> u16[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: u16, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: u16, order: Ordering) -> u16[src]

Stores a value into the atomic integer, returning the previous value.

impl LittleEndian<AtomicU32>[src]

pub fn compare_exchange(
    &self,
    current: u32,
    new: u32,
    success: Ordering,
    failure: Ordering
) -> Result<u32, u32>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: u32, order: Ordering) -> u32[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: u32, order: Ordering) -> u32[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: u32, order: Ordering) -> u32[src]

Maximum with the current value.

pub fn fetch_min(&self, val: u32, order: Ordering) -> u32[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: u32, order: Ordering) -> u32[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: u32, order: Ordering) -> u32[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: u32, order: Ordering) -> u32[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(u32) -> Option<u32>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<u32, u32>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: u32, order: Ordering) -> u32[src]

Bitwise “xor” with the current value.

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

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> u32[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: u32, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: u32, order: Ordering) -> u32[src]

Stores a value into the atomic integer, returning the previous value.

impl LittleEndian<AtomicU64>[src]

pub fn compare_exchange(
    &self,
    current: u64,
    new: u64,
    success: Ordering,
    failure: Ordering
) -> Result<u64, u64>
[src]

Stores a value into the atomic integer if the current value is the same as the current value.

pub fn fetch_add(&self, val: u64, order: Ordering) -> u64[src]

Adds to the current value, returning the previous value.

pub fn fetch_and(&self, val: u64, order: Ordering) -> u64[src]

Bitwise “and” with the current value.

pub fn fetch_max(&self, val: u64, order: Ordering) -> u64[src]

Maximum with the current value.

pub fn fetch_min(&self, val: u64, order: Ordering) -> u64[src]

Minimum with the current value.

pub fn fetch_nand(&self, val: u64, order: Ordering) -> u64[src]

Bitwise “nand” with the current value.

pub fn fetch_or(&self, val: u64, order: Ordering) -> u64[src]

Bitwise “or” with the current value.

pub fn fetch_sub(&self, val: u64, order: Ordering) -> u64[src]

Subtracts from the current value, returning the previous value.

pub fn fetch_update<F: FnMut(u64) -> Option<u64>>(
    &self,
    set_order: Ordering,
    fetch_order: Ordering,
    f: F
) -> Result<u64, u64>
[src]

Fetches the value, and applies a function to it that returns an optional new value. Returns a Result of Ok(previous_value) if the function returned Some(_), else Err(previous_value).

pub fn fetch_xor(&self, val: u64, order: Ordering) -> u64[src]

Bitwise “xor” with the current value.

pub fn into_inner(self) -> u64[src]

Consumes the atomic and returns the contained value.

pub fn load(&self, order: Ordering) -> u64[src]

Loads a value from the atomic integer.

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

Creates a new atomic integer

pub fn store(&self, val: u64, order: Ordering)[src]

Stores a value into the atomic integer.

pub fn swap(&self, val: u64, order: Ordering) -> u64[src]

Stores a value into the atomic integer, returning the previous value.

Trait Implementations

impl Add<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: &f32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: &f32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: &f64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: &f64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: &i128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: &i128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: &i16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: &i16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: &i32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: &i32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: &i64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: &i64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: &u128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: &u128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: &u16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: &u16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: &u32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: &u32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: &u64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: &u64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the + operation. Read more

impl Add<f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: f32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

fn add(self, other: f32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: f64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the + operator.

fn add(self, other: f64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: i128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the + operator.

fn add(self, other: i128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: i16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the + operator.

fn add(self, other: i16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: i32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the + operator.

fn add(self, other: i32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: i64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the + operator.

fn add(self, other: i64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: u128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the + operator.

fn add(self, other: u128) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: u16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the + operator.

fn add(self, other: u16) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: u32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the + operator.

fn add(self, other: u32) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: u64) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the + operator.

fn add(self, other: u64) -> Self::Output[src]

Performs the + operation. Read more

impl AddAssign<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

fn add_assign(&mut self, other: &LittleEndian<f32>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

fn add_assign(&mut self, other: &LittleEndian<f64>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn add_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn add_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn add_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn add_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn add_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn add_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn add_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn add_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the += operation. Read more

impl AddAssign<&'_ f32> for LittleEndian<f32>[src]

fn add_assign(&mut self, other: &f32)[src]

Performs the += operation. Read more

impl AddAssign<&'_ f64> for LittleEndian<f64>[src]

fn add_assign(&mut self, other: &f64)[src]

Performs the += operation. Read more

impl AddAssign<&'_ i128> for LittleEndian<i128>[src]

fn add_assign(&mut self, other: &i128)[src]

Performs the += operation. Read more

impl AddAssign<&'_ i16> for LittleEndian<i16>[src]

fn add_assign(&mut self, other: &i16)[src]

Performs the += operation. Read more

impl AddAssign<&'_ i32> for LittleEndian<i32>[src]

fn add_assign(&mut self, other: &i32)[src]

Performs the += operation. Read more

impl AddAssign<&'_ i64> for LittleEndian<i64>[src]

fn add_assign(&mut self, other: &i64)[src]

Performs the += operation. Read more

impl AddAssign<&'_ u128> for LittleEndian<u128>[src]

fn add_assign(&mut self, other: &u128)[src]

Performs the += operation. Read more

impl AddAssign<&'_ u16> for LittleEndian<u16>[src]

fn add_assign(&mut self, other: &u16)[src]

Performs the += operation. Read more

impl AddAssign<&'_ u32> for LittleEndian<u32>[src]

fn add_assign(&mut self, other: &u32)[src]

Performs the += operation. Read more

impl AddAssign<&'_ u64> for LittleEndian<u64>[src]

fn add_assign(&mut self, other: &u64)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<f32>> for LittleEndian<f32>[src]

fn add_assign(&mut self, other: LittleEndian<f32>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<f64>> for LittleEndian<f64>[src]

fn add_assign(&mut self, other: LittleEndian<f64>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn add_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn add_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn add_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn add_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn add_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn add_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn add_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the += operation. Read more

impl AddAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn add_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the += operation. Read more

impl AddAssign<f32> for LittleEndian<f32>[src]

fn add_assign(&mut self, other: f32)[src]

Performs the += operation. Read more

impl AddAssign<f64> for LittleEndian<f64>[src]

fn add_assign(&mut self, other: f64)[src]

Performs the += operation. Read more

impl AddAssign<i128> for LittleEndian<i128>[src]

fn add_assign(&mut self, other: i128)[src]

Performs the += operation. Read more

impl AddAssign<i16> for LittleEndian<i16>[src]

fn add_assign(&mut self, other: i16)[src]

Performs the += operation. Read more

impl AddAssign<i32> for LittleEndian<i32>[src]

fn add_assign(&mut self, other: i32)[src]

Performs the += operation. Read more

impl AddAssign<i64> for LittleEndian<i64>[src]

fn add_assign(&mut self, other: i64)[src]

Performs the += operation. Read more

impl AddAssign<u128> for LittleEndian<u128>[src]

fn add_assign(&mut self, other: u128)[src]

Performs the += operation. Read more

impl AddAssign<u16> for LittleEndian<u16>[src]

fn add_assign(&mut self, other: u16)[src]

Performs the += operation. Read more

impl AddAssign<u32> for LittleEndian<u32>[src]

fn add_assign(&mut self, other: u32)[src]

Performs the += operation. Read more

impl AddAssign<u64> for LittleEndian<u64>[src]

fn add_assign(&mut self, other: u64)[src]

Performs the += operation. Read more

impl Binary for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Binary for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl BitAnd<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: &i128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: &i128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: &i16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: &i16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: &i32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: &i32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: &i64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: &i64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: &u128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: &u128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: &u16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: &u16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: &u32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: &u32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: &u64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: &u64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: i128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

fn bitand(self, other: i128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: i16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the & operator.

fn bitand(self, other: i16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: i32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the & operator.

fn bitand(self, other: i32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: i64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the & operator.

fn bitand(self, other: i64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: u128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the & operator.

fn bitand(self, other: u128) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: u16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the & operator.

fn bitand(self, other: u16) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: u32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the & operator.

fn bitand(self, other: u32) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: u64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the & operator.

fn bitand(self, other: u64) -> Self::Output[src]

Performs the & operation. Read more

impl BitAndAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitand_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitand_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitand_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitand_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitand_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitand_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitand_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitand_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ i128> for LittleEndian<i128>[src]

fn bitand_assign(&mut self, other: &i128)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ i16> for LittleEndian<i16>[src]

fn bitand_assign(&mut self, other: &i16)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ i32> for LittleEndian<i32>[src]

fn bitand_assign(&mut self, other: &i32)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ i64> for LittleEndian<i64>[src]

fn bitand_assign(&mut self, other: &i64)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ u128> for LittleEndian<u128>[src]

fn bitand_assign(&mut self, other: &u128)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ u16> for LittleEndian<u16>[src]

fn bitand_assign(&mut self, other: &u16)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ u32> for LittleEndian<u32>[src]

fn bitand_assign(&mut self, other: &u32)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ u64> for LittleEndian<u64>[src]

fn bitand_assign(&mut self, other: &u64)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitand_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitand_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitand_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitand_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitand_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitand_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitand_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the &= operation. Read more

impl BitAndAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitand_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the &= operation. Read more

impl BitAndAssign<i128> for LittleEndian<i128>[src]

fn bitand_assign(&mut self, other: i128)[src]

Performs the &= operation. Read more

impl BitAndAssign<i16> for LittleEndian<i16>[src]

fn bitand_assign(&mut self, other: i16)[src]

Performs the &= operation. Read more

impl BitAndAssign<i32> for LittleEndian<i32>[src]

fn bitand_assign(&mut self, other: i32)[src]

Performs the &= operation. Read more

impl BitAndAssign<i64> for LittleEndian<i64>[src]

fn bitand_assign(&mut self, other: i64)[src]

Performs the &= operation. Read more

impl BitAndAssign<u128> for LittleEndian<u128>[src]

fn bitand_assign(&mut self, other: u128)[src]

Performs the &= operation. Read more

impl BitAndAssign<u16> for LittleEndian<u16>[src]

fn bitand_assign(&mut self, other: u16)[src]

Performs the &= operation. Read more

impl BitAndAssign<u32> for LittleEndian<u32>[src]

fn bitand_assign(&mut self, other: u32)[src]

Performs the &= operation. Read more

impl BitAndAssign<u64> for LittleEndian<u64>[src]

fn bitand_assign(&mut self, other: u64)[src]

Performs the &= operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI128>> for LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI128>> for &LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI16>> for LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI16>> for &LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI32>> for LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI32>> for &LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI64>> for LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroI64>> for &LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroI64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU128>> for LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU128>> for &LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU16>> for LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU16>> for &LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU32>> for LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU32>> for &LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU64>> for LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<NonZeroU64>> for &LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<NonZeroU64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: &i128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: &i128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: &i16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: &i16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: &i32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: &i32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: &i64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: &i64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: &u128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: &u128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: &u16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: &u16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: &u32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: &u32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: &u64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: &u64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI128>> for LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI128>> for &LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI16>> for LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI16>> for &LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI32>> for LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI32>> for &LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI64>> for LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroI64>> for &LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroI64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU128>> for LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU128>> for &LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU16>> for LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU16>> for &LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU32>> for LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU32>> for &LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU64>> for LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<NonZeroU64>> for &LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<NonZeroU64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI128> for LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI128> for &LittleEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI16> for LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI16> for &LittleEndian<NonZeroI16>[src]

type Output = NonZeroI16

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI32> for LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI32> for &LittleEndian<NonZeroI32>[src]

type Output = NonZeroI32

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI64> for LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroI64> for &LittleEndian<NonZeroI64>[src]

type Output = NonZeroI64

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroI64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU128> for LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU128> for &LittleEndian<NonZeroU128>[src]

type Output = NonZeroU128

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU16> for LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU16> for &LittleEndian<NonZeroU16>[src]

type Output = NonZeroU16

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU32> for LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU32> for &LittleEndian<NonZeroU32>[src]

type Output = NonZeroU32

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU64> for LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<NonZeroU64> for &LittleEndian<NonZeroU64>[src]

type Output = NonZeroU64

The resulting type after applying the | operator.

fn bitor(self, other: NonZeroU64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: i128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the | operator.

fn bitor(self, other: i128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: i16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the | operator.

fn bitor(self, other: i16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: i32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the | operator.

fn bitor(self, other: i32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: i64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the | operator.

fn bitor(self, other: i64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: u128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the | operator.

fn bitor(self, other: u128) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: u16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

fn bitor(self, other: u16) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: u32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

fn bitor(self, other: u32) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: u64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

fn bitor(self, other: u64) -> Self::Output[src]

Performs the | operation. Read more

impl BitOrAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitor_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitor_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitor_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitor_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitor_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitor_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitor_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitor_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ i128> for LittleEndian<i128>[src]

fn bitor_assign(&mut self, other: &i128)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ i16> for LittleEndian<i16>[src]

fn bitor_assign(&mut self, other: &i16)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ i32> for LittleEndian<i32>[src]

fn bitor_assign(&mut self, other: &i32)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ i64> for LittleEndian<i64>[src]

fn bitor_assign(&mut self, other: &i64)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ u128> for LittleEndian<u128>[src]

fn bitor_assign(&mut self, other: &u128)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ u16> for LittleEndian<u16>[src]

fn bitor_assign(&mut self, other: &u16)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ u32> for LittleEndian<u32>[src]

fn bitor_assign(&mut self, other: &u32)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ u64> for LittleEndian<u64>[src]

fn bitor_assign(&mut self, other: &u64)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroI128>> for LittleEndian<NonZeroI128>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroI128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroI16>> for LittleEndian<NonZeroI16>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroI16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroI32>> for LittleEndian<NonZeroI32>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroI32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroI64>> for LittleEndian<NonZeroI64>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroI64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroU128>> for LittleEndian<NonZeroU128>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroU128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroU16>> for LittleEndian<NonZeroU16>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroU16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroU32>> for LittleEndian<NonZeroU32>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroU32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<NonZeroU64>> for LittleEndian<NonZeroU64>[src]

fn bitor_assign(&mut self, other: LittleEndian<NonZeroU64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitor_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitor_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitor_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitor_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitor_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitor_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitor_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitor_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI128> for LittleEndian<NonZeroI128>[src]

fn bitor_assign(&mut self, other: NonZeroI128)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI16> for LittleEndian<NonZeroI16>[src]

fn bitor_assign(&mut self, other: NonZeroI16)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI32> for LittleEndian<NonZeroI32>[src]

fn bitor_assign(&mut self, other: NonZeroI32)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI64> for LittleEndian<NonZeroI64>[src]

fn bitor_assign(&mut self, other: NonZeroI64)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU128> for LittleEndian<NonZeroU128>[src]

fn bitor_assign(&mut self, other: NonZeroU128)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU16> for LittleEndian<NonZeroU16>[src]

fn bitor_assign(&mut self, other: NonZeroU16)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU32> for LittleEndian<NonZeroU32>[src]

fn bitor_assign(&mut self, other: NonZeroU32)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU64> for LittleEndian<NonZeroU64>[src]

fn bitor_assign(&mut self, other: NonZeroU64)[src]

Performs the |= operation. Read more

impl BitOrAssign<i128> for LittleEndian<i128>[src]

fn bitor_assign(&mut self, other: i128)[src]

Performs the |= operation. Read more

impl BitOrAssign<i16> for LittleEndian<i16>[src]

fn bitor_assign(&mut self, other: i16)[src]

Performs the |= operation. Read more

impl BitOrAssign<i32> for LittleEndian<i32>[src]

fn bitor_assign(&mut self, other: i32)[src]

Performs the |= operation. Read more

impl BitOrAssign<i64> for LittleEndian<i64>[src]

fn bitor_assign(&mut self, other: i64)[src]

Performs the |= operation. Read more

impl BitOrAssign<u128> for LittleEndian<u128>[src]

fn bitor_assign(&mut self, other: u128)[src]

Performs the |= operation. Read more

impl BitOrAssign<u16> for LittleEndian<u16>[src]

fn bitor_assign(&mut self, other: u16)[src]

Performs the |= operation. Read more

impl BitOrAssign<u32> for LittleEndian<u32>[src]

fn bitor_assign(&mut self, other: u32)[src]

Performs the |= operation. Read more

impl BitOrAssign<u64> for LittleEndian<u64>[src]

fn bitor_assign(&mut self, other: u64)[src]

Performs the |= operation. Read more

impl BitXor<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &i64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: &u64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: i128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

fn bitxor(self, other: i128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: i16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

fn bitxor(self, other: i16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: i32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

fn bitxor(self, other: i32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: i64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

fn bitxor(self, other: i64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: u128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

fn bitxor(self, other: u128) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: u16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

fn bitxor(self, other: u16) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: u32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

fn bitxor(self, other: u32) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: u64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

fn bitxor(self, other: u64) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXorAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitxor_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i128> for LittleEndian<i128>[src]

fn bitxor_assign(&mut self, other: &i128)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i16> for LittleEndian<i16>[src]

fn bitxor_assign(&mut self, other: &i16)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i32> for LittleEndian<i32>[src]

fn bitxor_assign(&mut self, other: &i32)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i64> for LittleEndian<i64>[src]

fn bitxor_assign(&mut self, other: &i64)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u128> for LittleEndian<u128>[src]

fn bitxor_assign(&mut self, other: &u128)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u16> for LittleEndian<u16>[src]

fn bitxor_assign(&mut self, other: &u16)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u32> for LittleEndian<u32>[src]

fn bitxor_assign(&mut self, other: &u32)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u64> for LittleEndian<u64>[src]

fn bitxor_assign(&mut self, other: &u64)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn bitxor_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn bitxor_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn bitxor_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn bitxor_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn bitxor_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn bitxor_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn bitxor_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn bitxor_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<i128> for LittleEndian<i128>[src]

fn bitxor_assign(&mut self, other: i128)[src]

Performs the ^= operation. Read more

impl BitXorAssign<i16> for LittleEndian<i16>[src]

fn bitxor_assign(&mut self, other: i16)[src]

Performs the ^= operation. Read more

impl BitXorAssign<i32> for LittleEndian<i32>[src]

fn bitxor_assign(&mut self, other: i32)[src]

Performs the ^= operation. Read more

impl BitXorAssign<i64> for LittleEndian<i64>[src]

fn bitxor_assign(&mut self, other: i64)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u128> for LittleEndian<u128>[src]

fn bitxor_assign(&mut self, other: u128)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u16> for LittleEndian<u16>[src]

fn bitxor_assign(&mut self, other: u16)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u32> for LittleEndian<u32>[src]

fn bitxor_assign(&mut self, other: u32)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u64> for LittleEndian<u64>[src]

fn bitxor_assign(&mut self, other: u64)[src]

Performs the ^= operation. Read more

impl<T: Clone> Clone for LittleEndian<T>[src]

fn clone(&self) -> LittleEndian<T>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<char>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<AtomicU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<f32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Debug for LittleEndian<f64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for LittleEndian<i16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<i32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<char>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicI16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicI32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicI64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicU16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicU32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<AtomicU64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<i64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<i128>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<u16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<u32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<u64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<u128>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<f32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for LittleEndian<f64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Display for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<char>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<f32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for LittleEndian<f64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Div<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: &f32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: &f32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: &f64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: &f64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: &i128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: &i128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: &i16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: &i16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: &i32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: &i32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: &i64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: &i64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: &u128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: &u128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: &u16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: &u16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: &u32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: &u32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: &u64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: &u64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the / operation. Read more

impl Div<f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: f32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

fn div(self, other: f32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: f64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

fn div(self, other: f64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: i128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

fn div(self, other: i128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: i16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

fn div(self, other: i16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: i32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

fn div(self, other: i32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: i64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

fn div(self, other: i64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: u128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

fn div(self, other: u128) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: u16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

fn div(self, other: u16) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: u32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

fn div(self, other: u32) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: u64) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

fn div(self, other: u64) -> Self::Output[src]

Performs the / operation. Read more

impl DivAssign<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

fn div_assign(&mut self, other: &LittleEndian<f32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

fn div_assign(&mut self, other: &LittleEndian<f64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn div_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn div_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn div_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn div_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn div_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn div_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn div_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn div_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ f32> for LittleEndian<f32>[src]

fn div_assign(&mut self, other: &f32)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ f64> for LittleEndian<f64>[src]

fn div_assign(&mut self, other: &f64)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ i128> for LittleEndian<i128>[src]

fn div_assign(&mut self, other: &i128)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ i16> for LittleEndian<i16>[src]

fn div_assign(&mut self, other: &i16)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ i32> for LittleEndian<i32>[src]

fn div_assign(&mut self, other: &i32)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ i64> for LittleEndian<i64>[src]

fn div_assign(&mut self, other: &i64)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ u128> for LittleEndian<u128>[src]

fn div_assign(&mut self, other: &u128)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ u16> for LittleEndian<u16>[src]

fn div_assign(&mut self, other: &u16)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ u32> for LittleEndian<u32>[src]

fn div_assign(&mut self, other: &u32)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ u64> for LittleEndian<u64>[src]

fn div_assign(&mut self, other: &u64)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<f32>> for LittleEndian<f32>[src]

fn div_assign(&mut self, other: LittleEndian<f32>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<f64>> for LittleEndian<f64>[src]

fn div_assign(&mut self, other: LittleEndian<f64>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn div_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn div_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn div_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn div_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn div_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn div_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn div_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the /= operation. Read more

impl DivAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn div_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the /= operation. Read more

impl DivAssign<f32> for LittleEndian<f32>[src]

fn div_assign(&mut self, other: f32)[src]

Performs the /= operation. Read more

impl DivAssign<f64> for LittleEndian<f64>[src]

fn div_assign(&mut self, other: f64)[src]

Performs the /= operation. Read more

impl DivAssign<i128> for LittleEndian<i128>[src]

fn div_assign(&mut self, other: i128)[src]

Performs the /= operation. Read more

impl DivAssign<i16> for LittleEndian<i16>[src]

fn div_assign(&mut self, other: i16)[src]

Performs the /= operation. Read more

impl DivAssign<i32> for LittleEndian<i32>[src]

fn div_assign(&mut self, other: i32)[src]

Performs the /= operation. Read more

impl DivAssign<i64> for LittleEndian<i64>[src]

fn div_assign(&mut self, other: i64)[src]

Performs the /= operation. Read more

impl DivAssign<u128> for LittleEndian<u128>[src]

fn div_assign(&mut self, other: u128)[src]

Performs the /= operation. Read more

impl DivAssign<u16> for LittleEndian<u16>[src]

fn div_assign(&mut self, other: u16)[src]

Performs the /= operation. Read more

impl DivAssign<u32> for LittleEndian<u32>[src]

fn div_assign(&mut self, other: u32)[src]

Performs the /= operation. Read more

impl DivAssign<u64> for LittleEndian<u64>[src]

fn div_assign(&mut self, other: u64)[src]

Performs the /= operation. Read more

impl<'a> From<&'a NonZeroI128> for LittleEndian<NonZeroI128>[src]

fn from(value: &'a NonZeroI128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI16> for LittleEndian<NonZeroI16>[src]

fn from(value: &'a NonZeroI16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI32> for LittleEndian<NonZeroI32>[src]

fn from(value: &'a NonZeroI32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI64> for LittleEndian<NonZeroI64>[src]

fn from(value: &'a NonZeroI64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU128> for LittleEndian<NonZeroU128>[src]

fn from(value: &'a NonZeroU128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU16> for LittleEndian<NonZeroU16>[src]

fn from(value: &'a NonZeroU16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU32> for LittleEndian<NonZeroU32>[src]

fn from(value: &'a NonZeroU32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU64> for LittleEndian<NonZeroU64>[src]

fn from(value: &'a NonZeroU64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a char> for LittleEndian<char>[src]

fn from(value: &'a char) -> Self[src]

Performs the conversion.

impl<'a> From<&'a f32> for LittleEndian<f32>[src]

fn from(value: &'a f32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a f64> for LittleEndian<f64>[src]

fn from(value: &'a f64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i128> for LittleEndian<i128>[src]

fn from(value: &'a i128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i16> for LittleEndian<i16>[src]

fn from(value: &'a i16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i32> for LittleEndian<i32>[src]

fn from(value: &'a i32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i64> for LittleEndian<i64>[src]

fn from(value: &'a i64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u128> for LittleEndian<u128>[src]

fn from(value: &'a u128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u16> for LittleEndian<u16>[src]

fn from(value: &'a u16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u32> for LittleEndian<u32>[src]

fn from(value: &'a u32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u64> for LittleEndian<u64>[src]

fn from(value: &'a u64) -> Self[src]

Performs the conversion.

impl From<NonZeroI128> for LittleEndian<NonZeroI128>[src]

fn from(value: NonZeroI128) -> Self[src]

Performs the conversion.

impl From<NonZeroI16> for LittleEndian<NonZeroI16>[src]

fn from(value: NonZeroI16) -> Self[src]

Performs the conversion.

impl From<NonZeroI32> for LittleEndian<NonZeroI32>[src]

fn from(value: NonZeroI32) -> Self[src]

Performs the conversion.

impl From<NonZeroI64> for LittleEndian<NonZeroI64>[src]

fn from(value: NonZeroI64) -> Self[src]

Performs the conversion.

impl From<NonZeroU128> for LittleEndian<NonZeroU128>[src]

fn from(value: NonZeroU128) -> Self[src]

Performs the conversion.

impl From<NonZeroU16> for LittleEndian<NonZeroU16>[src]

fn from(value: NonZeroU16) -> Self[src]

Performs the conversion.

impl From<NonZeroU32> for LittleEndian<NonZeroU32>[src]

fn from(value: NonZeroU32) -> Self[src]

Performs the conversion.

impl From<NonZeroU64> for LittleEndian<NonZeroU64>[src]

fn from(value: NonZeroU64) -> Self[src]

Performs the conversion.

impl From<char> for LittleEndian<char>[src]

fn from(value: char) -> Self[src]

Performs the conversion.

impl From<f32> for LittleEndian<f32>[src]

fn from(value: f32) -> Self[src]

Performs the conversion.

impl From<f64> for LittleEndian<f64>[src]

fn from(value: f64) -> Self[src]

Performs the conversion.

impl From<i128> for LittleEndian<i128>[src]

fn from(value: i128) -> Self[src]

Performs the conversion.

impl From<i16> for LittleEndian<i16>[src]

fn from(value: i16) -> Self[src]

Performs the conversion.

impl From<i16> for LittleEndian<AtomicI16>[src]

fn from(value: i16) -> Self[src]

Performs the conversion.

impl From<i32> for LittleEndian<i32>[src]

fn from(value: i32) -> Self[src]

Performs the conversion.

impl From<i32> for LittleEndian<AtomicI32>[src]

fn from(value: i32) -> Self[src]

Performs the conversion.

impl From<i64> for LittleEndian<i64>[src]

fn from(value: i64) -> Self[src]

Performs the conversion.

impl From<i64> for LittleEndian<AtomicI64>[src]

fn from(value: i64) -> Self[src]

Performs the conversion.

impl From<u128> for LittleEndian<u128>[src]

fn from(value: u128) -> Self[src]

Performs the conversion.

impl From<u16> for LittleEndian<u16>[src]

fn from(value: u16) -> Self[src]

Performs the conversion.

impl From<u16> for LittleEndian<AtomicU16>[src]

fn from(value: u16) -> Self[src]

Performs the conversion.

impl From<u32> for LittleEndian<u32>[src]

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

Performs the conversion.

impl From<u32> for LittleEndian<AtomicU32>[src]

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

Performs the conversion.

impl From<u64> for LittleEndian<u64>[src]

fn from(value: u64) -> Self[src]

Performs the conversion.

impl From<u64> for LittleEndian<AtomicU64>[src]

fn from(value: u64) -> Self[src]

Performs the conversion.

impl Hash for LittleEndian<i16>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<i32>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroI32>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroI64>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroI128>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroU16>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroU32>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroU64>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroU128>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<i64>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<i128>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<u16>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<u32>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<u64>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<u128>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<char>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Hash for LittleEndian<NonZeroI16>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl LowerExp for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<f32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerExp for LittleEndian<f64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl LowerHex for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Mul<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: &f32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: &f32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: &f64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: &f64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: &i128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: &i128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: &i16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: &i16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: &i32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: &i32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: &i64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: &i64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: &u128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: &u128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: &u16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: &u16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: &u32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: &u32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: &u64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: &u64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: f32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

fn mul(self, other: f32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: f64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: f64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: i128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

fn mul(self, other: i128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: i16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

fn mul(self, other: i16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: i32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

fn mul(self, other: i32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: i64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

fn mul(self, other: i64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: u128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

fn mul(self, other: u128) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: u16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

fn mul(self, other: u16) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: u32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

fn mul(self, other: u32) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: u64) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

fn mul(self, other: u64) -> Self::Output[src]

Performs the * operation. Read more

impl MulAssign<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

fn mul_assign(&mut self, other: &LittleEndian<f32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

fn mul_assign(&mut self, other: &LittleEndian<f64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn mul_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn mul_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn mul_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn mul_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn mul_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn mul_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn mul_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn mul_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ f32> for LittleEndian<f32>[src]

fn mul_assign(&mut self, other: &f32)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ f64> for LittleEndian<f64>[src]

fn mul_assign(&mut self, other: &f64)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ i128> for LittleEndian<i128>[src]

fn mul_assign(&mut self, other: &i128)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ i16> for LittleEndian<i16>[src]

fn mul_assign(&mut self, other: &i16)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ i32> for LittleEndian<i32>[src]

fn mul_assign(&mut self, other: &i32)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ i64> for LittleEndian<i64>[src]

fn mul_assign(&mut self, other: &i64)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ u128> for LittleEndian<u128>[src]

fn mul_assign(&mut self, other: &u128)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ u16> for LittleEndian<u16>[src]

fn mul_assign(&mut self, other: &u16)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ u32> for LittleEndian<u32>[src]

fn mul_assign(&mut self, other: &u32)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ u64> for LittleEndian<u64>[src]

fn mul_assign(&mut self, other: &u64)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<f32>> for LittleEndian<f32>[src]

fn mul_assign(&mut self, other: LittleEndian<f32>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<f64>> for LittleEndian<f64>[src]

fn mul_assign(&mut self, other: LittleEndian<f64>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn mul_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn mul_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn mul_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn mul_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn mul_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn mul_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn mul_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the *= operation. Read more

impl MulAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn mul_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the *= operation. Read more

impl MulAssign<f32> for LittleEndian<f32>[src]

fn mul_assign(&mut self, other: f32)[src]

Performs the *= operation. Read more

impl MulAssign<f64> for LittleEndian<f64>[src]

fn mul_assign(&mut self, other: f64)[src]

Performs the *= operation. Read more

impl MulAssign<i128> for LittleEndian<i128>[src]

fn mul_assign(&mut self, other: i128)[src]

Performs the *= operation. Read more

impl MulAssign<i16> for LittleEndian<i16>[src]

fn mul_assign(&mut self, other: i16)[src]

Performs the *= operation. Read more

impl MulAssign<i32> for LittleEndian<i32>[src]

fn mul_assign(&mut self, other: i32)[src]

Performs the *= operation. Read more

impl MulAssign<i64> for LittleEndian<i64>[src]

fn mul_assign(&mut self, other: i64)[src]

Performs the *= operation. Read more

impl MulAssign<u128> for LittleEndian<u128>[src]

fn mul_assign(&mut self, other: u128)[src]

Performs the *= operation. Read more

impl MulAssign<u16> for LittleEndian<u16>[src]

fn mul_assign(&mut self, other: u16)[src]

Performs the *= operation. Read more

impl MulAssign<u32> for LittleEndian<u32>[src]

fn mul_assign(&mut self, other: u32)[src]

Performs the *= operation. Read more

impl MulAssign<u64> for LittleEndian<u64>[src]

fn mul_assign(&mut self, other: u64)[src]

Performs the *= operation. Read more

impl Neg for LittleEndian<i16>[src]

type Output = <i16 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Neg for LittleEndian<i32>[src]

type Output = <i32 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Neg for LittleEndian<i64>[src]

type Output = <i64 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Neg for LittleEndian<i128>[src]

type Output = <i128 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Neg for LittleEndian<f32>[src]

type Output = <f32 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Neg for LittleEndian<f64>[src]

type Output = <f64 as Neg>::Output

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl Not for LittleEndian<i16>[src]

type Output = <i16 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<i32>[src]

type Output = <i32 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<i64>[src]

type Output = <i64 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<i128>[src]

type Output = <i128 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<u16>[src]

type Output = <u16 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<u32>[src]

type Output = <u32 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<u64>[src]

type Output = <u64 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Not for LittleEndian<u128>[src]

type Output = <u128 as Not>::Output

The resulting type after applying the ! operator.

fn not(self) -> Self::Output[src]

Performs the unary ! operation. Read more

impl Octal for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Octal for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl Ord for LittleEndian<i16>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<i32>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroI32>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroI64>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroI128>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroU16>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroU32>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroU64>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroU128>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<i64>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<i128>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<u16>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<u32>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<u64>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<u128>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<char>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl Ord for LittleEndian<NonZeroI16>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<LittleEndian<NonZeroI128>> for LittleEndian<NonZeroI128>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroI16>> for LittleEndian<NonZeroI16>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroI32>> for LittleEndian<NonZeroI32>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroI64>> for LittleEndian<NonZeroI64>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroU128>> for LittleEndian<NonZeroU128>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroU16>> for LittleEndian<NonZeroU16>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroU32>> for LittleEndian<NonZeroU32>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<NonZeroU64>> for LittleEndian<NonZeroU64>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<char>> for LittleEndian<char>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<f32>> for LittleEndian<f32>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<f64>> for LittleEndian<f64>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<i128>> for LittleEndian<i128>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<i16>> for LittleEndian<i16>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<i32>> for LittleEndian<i32>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<i64>> for LittleEndian<i64>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<u128>> for LittleEndian<u128>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<u16>> for LittleEndian<u16>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<u32>> for LittleEndian<u32>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LittleEndian<u64>> for LittleEndian<u64>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroI128> for LittleEndian<NonZeroI128>[src]

fn eq(&self, other: &NonZeroI128) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroI16> for LittleEndian<NonZeroI16>[src]

fn eq(&self, other: &NonZeroI16) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroI32> for LittleEndian<NonZeroI32>[src]

fn eq(&self, other: &NonZeroI32) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroI64> for LittleEndian<NonZeroI64>[src]

fn eq(&self, other: &NonZeroI64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroU128> for LittleEndian<NonZeroU128>[src]

fn eq(&self, other: &NonZeroU128) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroU16> for LittleEndian<NonZeroU16>[src]

fn eq(&self, other: &NonZeroU16) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroU32> for LittleEndian<NonZeroU32>[src]

fn eq(&self, other: &NonZeroU32) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<NonZeroU64> for LittleEndian<NonZeroU64>[src]

fn eq(&self, other: &NonZeroU64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<char> for LittleEndian<char>[src]

fn eq(&self, other: &char) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<f32> for LittleEndian<f32>[src]

fn eq(&self, other: &f32) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<f64> for LittleEndian<f64>[src]

fn eq(&self, other: &f64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<i128> for LittleEndian<i128>[src]

fn eq(&self, other: &i128) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<i16> for LittleEndian<i16>[src]

fn eq(&self, other: &i16) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<i32> for LittleEndian<i32>[src]

fn eq(&self, other: &i32) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<i64> for LittleEndian<i64>[src]

fn eq(&self, other: &i64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<u128> for LittleEndian<u128>[src]

fn eq(&self, other: &u128) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<u16> for LittleEndian<u16>[src]

fn eq(&self, other: &u16) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<u32> for LittleEndian<u32>[src]

fn eq(&self, other: &u32) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<u64> for LittleEndian<u64>[src]

fn eq(&self, other: &u64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialOrd<LittleEndian<NonZeroI128>> for LittleEndian<NonZeroI128>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroI16>> for LittleEndian<NonZeroI16>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroI32>> for LittleEndian<NonZeroI32>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroI64>> for LittleEndian<NonZeroI64>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroU128>> for LittleEndian<NonZeroU128>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroU16>> for LittleEndian<NonZeroU16>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroU32>> for LittleEndian<NonZeroU32>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<NonZeroU64>> for LittleEndian<NonZeroU64>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<char>> for LittleEndian<char>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<f32>> for LittleEndian<f32>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<f64>> for LittleEndian<f64>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<i128>> for LittleEndian<i128>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<i16>> for LittleEndian<i16>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<i32>> for LittleEndian<i32>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<i64>> for LittleEndian<i64>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<u128>> for LittleEndian<u128>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<u16>> for LittleEndian<u16>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<u32>> for LittleEndian<u32>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<LittleEndian<u64>> for LittleEndian<u64>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroI128> for LittleEndian<NonZeroI128>[src]

fn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroI16> for LittleEndian<NonZeroI16>[src]

fn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroI32> for LittleEndian<NonZeroI32>[src]

fn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroI64> for LittleEndian<NonZeroI64>[src]

fn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroU128> for LittleEndian<NonZeroU128>[src]

fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroU16> for LittleEndian<NonZeroU16>[src]

fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroU32> for LittleEndian<NonZeroU32>[src]

fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<NonZeroU64> for LittleEndian<NonZeroU64>[src]

fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<char> for LittleEndian<char>[src]

fn partial_cmp(&self, other: &char) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<f32> for LittleEndian<f32>[src]

fn partial_cmp(&self, other: &f32) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<f64> for LittleEndian<f64>[src]

fn partial_cmp(&self, other: &f64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<i128> for LittleEndian<i128>[src]

fn partial_cmp(&self, other: &i128) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<i16> for LittleEndian<i16>[src]

fn partial_cmp(&self, other: &i16) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<i32> for LittleEndian<i32>[src]

fn partial_cmp(&self, other: &i32) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<i64> for LittleEndian<i64>[src]

fn partial_cmp(&self, other: &i64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<u128> for LittleEndian<u128>[src]

fn partial_cmp(&self, other: &u128) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<u16> for LittleEndian<u16>[src]

fn partial_cmp(&self, other: &u16) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<u32> for LittleEndian<u32>[src]

fn partial_cmp(&self, other: &u32) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<u64> for LittleEndian<u64>[src]

fn partial_cmp(&self, other: &u64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Product<LittleEndian<f32>> for LittleEndian<f32>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<f64>> for LittleEndian<f64>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<i128>> for LittleEndian<i128>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<i16>> for LittleEndian<i16>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<i32>> for LittleEndian<i32>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<i64>> for LittleEndian<i64>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<u128>> for LittleEndian<u128>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<u16>> for LittleEndian<u16>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<u32>> for LittleEndian<u32>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Product<LittleEndian<u64>> for LittleEndian<u64>[src]

fn product<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl Rem<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: &f32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: &f32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: &f64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: &f64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: &i128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: &i128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: &i16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: &i16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: &i32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: &i32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: &i64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: &i64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: &u128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: &u128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: &u16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: &u16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: &u32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: &u32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: &u64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: &u64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: f32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

fn rem(self, other: f32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: f64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

fn rem(self, other: f64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: i128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

fn rem(self, other: i128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: i16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

fn rem(self, other: i16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: i32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

fn rem(self, other: i32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: i64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

fn rem(self, other: i64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: u128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

fn rem(self, other: u128) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: u16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

fn rem(self, other: u16) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: u32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

fn rem(self, other: u32) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: u64) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

fn rem(self, other: u64) -> Self::Output[src]

Performs the % operation. Read more

impl RemAssign<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

fn rem_assign(&mut self, other: &LittleEndian<f32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

fn rem_assign(&mut self, other: &LittleEndian<f64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn rem_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn rem_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn rem_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn rem_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn rem_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn rem_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn rem_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn rem_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ f32> for LittleEndian<f32>[src]

fn rem_assign(&mut self, other: &f32)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ f64> for LittleEndian<f64>[src]

fn rem_assign(&mut self, other: &f64)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ i128> for LittleEndian<i128>[src]

fn rem_assign(&mut self, other: &i128)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ i16> for LittleEndian<i16>[src]

fn rem_assign(&mut self, other: &i16)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ i32> for LittleEndian<i32>[src]

fn rem_assign(&mut self, other: &i32)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ i64> for LittleEndian<i64>[src]

fn rem_assign(&mut self, other: &i64)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ u128> for LittleEndian<u128>[src]

fn rem_assign(&mut self, other: &u128)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ u16> for LittleEndian<u16>[src]

fn rem_assign(&mut self, other: &u16)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ u32> for LittleEndian<u32>[src]

fn rem_assign(&mut self, other: &u32)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ u64> for LittleEndian<u64>[src]

fn rem_assign(&mut self, other: &u64)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<f32>> for LittleEndian<f32>[src]

fn rem_assign(&mut self, other: LittleEndian<f32>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<f64>> for LittleEndian<f64>[src]

fn rem_assign(&mut self, other: LittleEndian<f64>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn rem_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn rem_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn rem_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn rem_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn rem_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn rem_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn rem_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the %= operation. Read more

impl RemAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn rem_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the %= operation. Read more

impl RemAssign<f32> for LittleEndian<f32>[src]

fn rem_assign(&mut self, other: f32)[src]

Performs the %= operation. Read more

impl RemAssign<f64> for LittleEndian<f64>[src]

fn rem_assign(&mut self, other: f64)[src]

Performs the %= operation. Read more

impl RemAssign<i128> for LittleEndian<i128>[src]

fn rem_assign(&mut self, other: i128)[src]

Performs the %= operation. Read more

impl RemAssign<i16> for LittleEndian<i16>[src]

fn rem_assign(&mut self, other: i16)[src]

Performs the %= operation. Read more

impl RemAssign<i32> for LittleEndian<i32>[src]

fn rem_assign(&mut self, other: i32)[src]

Performs the %= operation. Read more

impl RemAssign<i64> for LittleEndian<i64>[src]

fn rem_assign(&mut self, other: i64)[src]

Performs the %= operation. Read more

impl RemAssign<u128> for LittleEndian<u128>[src]

fn rem_assign(&mut self, other: u128)[src]

Performs the %= operation. Read more

impl RemAssign<u16> for LittleEndian<u16>[src]

fn rem_assign(&mut self, other: u16)[src]

Performs the %= operation. Read more

impl RemAssign<u32> for LittleEndian<u32>[src]

fn rem_assign(&mut self, other: u32)[src]

Performs the %= operation. Read more

impl RemAssign<u64> for LittleEndian<u64>[src]

fn rem_assign(&mut self, other: u64)[src]

Performs the %= operation. Read more

impl Shl<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: &i128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: &i128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: &i16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: &i16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: &i32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: &i32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: &i64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: &i64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: &u128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: &u128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: &u16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: &u16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: &u32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: &u32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: &u64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: &u64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: i128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

fn shl(self, other: i128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: i16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

fn shl(self, other: i16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: i32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

fn shl(self, other: i32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: i64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

fn shl(self, other: i64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: u128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

fn shl(self, other: u128) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: u16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

fn shl(self, other: u16) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: u32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

fn shl(self, other: u32) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: u64) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

fn shl(self, other: u64) -> Self::Output[src]

Performs the << operation. Read more

impl ShlAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn shl_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn shl_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn shl_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn shl_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn shl_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn shl_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn shl_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn shl_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ i128> for LittleEndian<i128>[src]

fn shl_assign(&mut self, other: &i128)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ i16> for LittleEndian<i16>[src]

fn shl_assign(&mut self, other: &i16)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ i32> for LittleEndian<i32>[src]

fn shl_assign(&mut self, other: &i32)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ i64> for LittleEndian<i64>[src]

fn shl_assign(&mut self, other: &i64)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ u128> for LittleEndian<u128>[src]

fn shl_assign(&mut self, other: &u128)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ u16> for LittleEndian<u16>[src]

fn shl_assign(&mut self, other: &u16)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ u32> for LittleEndian<u32>[src]

fn shl_assign(&mut self, other: &u32)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ u64> for LittleEndian<u64>[src]

fn shl_assign(&mut self, other: &u64)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn shl_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn shl_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn shl_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn shl_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn shl_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn shl_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn shl_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn shl_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<i128> for LittleEndian<i128>[src]

fn shl_assign(&mut self, other: i128)[src]

Performs the <<= operation. Read more

impl ShlAssign<i16> for LittleEndian<i16>[src]

fn shl_assign(&mut self, other: i16)[src]

Performs the <<= operation. Read more

impl ShlAssign<i32> for LittleEndian<i32>[src]

fn shl_assign(&mut self, other: i32)[src]

Performs the <<= operation. Read more

impl ShlAssign<i64> for LittleEndian<i64>[src]

fn shl_assign(&mut self, other: i64)[src]

Performs the <<= operation. Read more

impl ShlAssign<u128> for LittleEndian<u128>[src]

fn shl_assign(&mut self, other: u128)[src]

Performs the <<= operation. Read more

impl ShlAssign<u16> for LittleEndian<u16>[src]

fn shl_assign(&mut self, other: u16)[src]

Performs the <<= operation. Read more

impl ShlAssign<u32> for LittleEndian<u32>[src]

fn shl_assign(&mut self, other: u32)[src]

Performs the <<= operation. Read more

impl ShlAssign<u64> for LittleEndian<u64>[src]

fn shl_assign(&mut self, other: u64)[src]

Performs the <<= operation. Read more

impl Shr<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &i128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &i128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &i16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &i16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &i32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &i32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &i64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &i64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &u128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &u128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &u16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &u16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &u32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &u32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &u64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &u64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: i128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: i128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: i16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: i16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: i32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: i32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: i64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: i64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: u128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: u128) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: u16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: u16) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: u32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: u32) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: u64) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: u64) -> Self::Output[src]

Performs the >> operation. Read more

impl ShrAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn shr_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn shr_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn shr_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn shr_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn shr_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn shr_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn shr_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn shr_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i128> for LittleEndian<i128>[src]

fn shr_assign(&mut self, other: &i128)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i16> for LittleEndian<i16>[src]

fn shr_assign(&mut self, other: &i16)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i32> for LittleEndian<i32>[src]

fn shr_assign(&mut self, other: &i32)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i64> for LittleEndian<i64>[src]

fn shr_assign(&mut self, other: &i64)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u128> for LittleEndian<u128>[src]

fn shr_assign(&mut self, other: &u128)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u16> for LittleEndian<u16>[src]

fn shr_assign(&mut self, other: &u16)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u32> for LittleEndian<u32>[src]

fn shr_assign(&mut self, other: &u32)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u64> for LittleEndian<u64>[src]

fn shr_assign(&mut self, other: &u64)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn shr_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn shr_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn shr_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn shr_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn shr_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn shr_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn shr_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn shr_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<i128> for LittleEndian<i128>[src]

fn shr_assign(&mut self, other: i128)[src]

Performs the >>= operation. Read more

impl ShrAssign<i16> for LittleEndian<i16>[src]

fn shr_assign(&mut self, other: i16)[src]

Performs the >>= operation. Read more

impl ShrAssign<i32> for LittleEndian<i32>[src]

fn shr_assign(&mut self, other: i32)[src]

Performs the >>= operation. Read more

impl ShrAssign<i64> for LittleEndian<i64>[src]

fn shr_assign(&mut self, other: i64)[src]

Performs the >>= operation. Read more

impl ShrAssign<u128> for LittleEndian<u128>[src]

fn shr_assign(&mut self, other: u128)[src]

Performs the >>= operation. Read more

impl ShrAssign<u16> for LittleEndian<u16>[src]

fn shr_assign(&mut self, other: u16)[src]

Performs the >>= operation. Read more

impl ShrAssign<u32> for LittleEndian<u32>[src]

fn shr_assign(&mut self, other: u32)[src]

Performs the >>= operation. Read more

impl ShrAssign<u64> for LittleEndian<u64>[src]

fn shr_assign(&mut self, other: u64)[src]

Performs the >>= operation. Read more

impl Sub<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &LittleEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &f32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &f32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &f64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &f64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &i128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &i128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &i16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &i16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &i32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &i32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &i64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &i64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &u128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &u128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &u16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &u16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &u32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &u32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &u64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &u64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<f32>> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<f32>> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<f64>> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<f64>> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i128>> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i128>> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i16>> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i16>> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i32>> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i32>> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i64>> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<i64>> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u128>> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u128>> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u16>> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u16>> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u32>> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u32>> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u64>> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<LittleEndian<u64>> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: LittleEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<f32> for LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: f32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<f32> for &LittleEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: f32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<f64> for LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: f64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<f64> for &LittleEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: f64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i128> for LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: i128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i128> for &LittleEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: i128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i16> for LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: i16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i16> for &LittleEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: i16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i32> for LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: i32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i32> for &LittleEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: i32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i64> for LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: i64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<i64> for &LittleEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: i64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u128> for LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: u128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u128> for &LittleEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: u128) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u16> for LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: u16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u16> for &LittleEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: u16) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u32> for LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: u32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u32> for &LittleEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: u32) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u64> for LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: u64) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u64> for &LittleEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: u64) -> Self::Output[src]

Performs the - operation. Read more

impl SubAssign<&'_ LittleEndian<f32>> for LittleEndian<f32>[src]

fn sub_assign(&mut self, other: &LittleEndian<f32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<f64>> for LittleEndian<f64>[src]

fn sub_assign(&mut self, other: &LittleEndian<f64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<i128>> for LittleEndian<i128>[src]

fn sub_assign(&mut self, other: &LittleEndian<i128>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<i16>> for LittleEndian<i16>[src]

fn sub_assign(&mut self, other: &LittleEndian<i16>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<i32>> for LittleEndian<i32>[src]

fn sub_assign(&mut self, other: &LittleEndian<i32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<i64>> for LittleEndian<i64>[src]

fn sub_assign(&mut self, other: &LittleEndian<i64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<u128>> for LittleEndian<u128>[src]

fn sub_assign(&mut self, other: &LittleEndian<u128>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<u16>> for LittleEndian<u16>[src]

fn sub_assign(&mut self, other: &LittleEndian<u16>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<u32>> for LittleEndian<u32>[src]

fn sub_assign(&mut self, other: &LittleEndian<u32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ LittleEndian<u64>> for LittleEndian<u64>[src]

fn sub_assign(&mut self, other: &LittleEndian<u64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ f32> for LittleEndian<f32>[src]

fn sub_assign(&mut self, other: &f32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ f64> for LittleEndian<f64>[src]

fn sub_assign(&mut self, other: &f64)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i128> for LittleEndian<i128>[src]

fn sub_assign(&mut self, other: &i128)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i16> for LittleEndian<i16>[src]

fn sub_assign(&mut self, other: &i16)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i32> for LittleEndian<i32>[src]

fn sub_assign(&mut self, other: &i32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i64> for LittleEndian<i64>[src]

fn sub_assign(&mut self, other: &i64)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u128> for LittleEndian<u128>[src]

fn sub_assign(&mut self, other: &u128)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u16> for LittleEndian<u16>[src]

fn sub_assign(&mut self, other: &u16)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u32> for LittleEndian<u32>[src]

fn sub_assign(&mut self, other: &u32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u64> for LittleEndian<u64>[src]

fn sub_assign(&mut self, other: &u64)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<f32>> for LittleEndian<f32>[src]

fn sub_assign(&mut self, other: LittleEndian<f32>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<f64>> for LittleEndian<f64>[src]

fn sub_assign(&mut self, other: LittleEndian<f64>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<i128>> for LittleEndian<i128>[src]

fn sub_assign(&mut self, other: LittleEndian<i128>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<i16>> for LittleEndian<i16>[src]

fn sub_assign(&mut self, other: LittleEndian<i16>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<i32>> for LittleEndian<i32>[src]

fn sub_assign(&mut self, other: LittleEndian<i32>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<i64>> for LittleEndian<i64>[src]

fn sub_assign(&mut self, other: LittleEndian<i64>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<u128>> for LittleEndian<u128>[src]

fn sub_assign(&mut self, other: LittleEndian<u128>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<u16>> for LittleEndian<u16>[src]

fn sub_assign(&mut self, other: LittleEndian<u16>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<u32>> for LittleEndian<u32>[src]

fn sub_assign(&mut self, other: LittleEndian<u32>)[src]

Performs the -= operation. Read more

impl SubAssign<LittleEndian<u64>> for LittleEndian<u64>[src]

fn sub_assign(&mut self, other: LittleEndian<u64>)[src]

Performs the -= operation. Read more

impl SubAssign<f32> for LittleEndian<f32>[src]

fn sub_assign(&mut self, other: f32)[src]

Performs the -= operation. Read more

impl SubAssign<f64> for LittleEndian<f64>[src]

fn sub_assign(&mut self, other: f64)[src]

Performs the -= operation. Read more

impl SubAssign<i128> for LittleEndian<i128>[src]

fn sub_assign(&mut self, other: i128)[src]

Performs the -= operation. Read more

impl SubAssign<i16> for LittleEndian<i16>[src]

fn sub_assign(&mut self, other: i16)[src]

Performs the -= operation. Read more

impl SubAssign<i32> for LittleEndian<i32>[src]

fn sub_assign(&mut self, other: i32)[src]

Performs the -= operation. Read more

impl SubAssign<i64> for LittleEndian<i64>[src]

fn sub_assign(&mut self, other: i64)[src]

Performs the -= operation. Read more

impl SubAssign<u128> for LittleEndian<u128>[src]

fn sub_assign(&mut self, other: u128)[src]

Performs the -= operation. Read more

impl SubAssign<u16> for LittleEndian<u16>[src]

fn sub_assign(&mut self, other: u16)[src]

Performs the -= operation. Read more

impl SubAssign<u32> for LittleEndian<u32>[src]

fn sub_assign(&mut self, other: u32)[src]

Performs the -= operation. Read more

impl SubAssign<u64> for LittleEndian<u64>[src]

fn sub_assign(&mut self, other: u64)[src]

Performs the -= operation. Read more

impl Sum<LittleEndian<f32>> for LittleEndian<f32>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<f64>> for LittleEndian<f64>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<i128>> for LittleEndian<i128>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<i16>> for LittleEndian<i16>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<i32>> for LittleEndian<i32>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<i64>> for LittleEndian<i64>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<u128>> for LittleEndian<u128>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<u16>> for LittleEndian<u16>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<u32>> for LittleEndian<u32>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl Sum<LittleEndian<u64>> for LittleEndian<u64>[src]

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl UpperExp for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<f32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for LittleEndian<f64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for LittleEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl<T: Copy> Copy for LittleEndian<T>[src]

impl Eq for LittleEndian<i16>[src]

impl Eq for LittleEndian<i32>[src]

impl Eq for LittleEndian<char>[src]

impl Eq for LittleEndian<NonZeroI16>[src]

impl Eq for LittleEndian<NonZeroI32>[src]

impl Eq for LittleEndian<NonZeroI64>[src]

impl Eq for LittleEndian<NonZeroI128>[src]

impl Eq for LittleEndian<NonZeroU16>[src]

impl Eq for LittleEndian<NonZeroU32>[src]

impl Eq for LittleEndian<NonZeroU64>[src]

impl Eq for LittleEndian<NonZeroU128>[src]

impl Eq for LittleEndian<i64>[src]

impl Eq for LittleEndian<i128>[src]

impl Eq for LittleEndian<u16>[src]

impl Eq for LittleEndian<u32>[src]

impl Eq for LittleEndian<u64>[src]

impl Eq for LittleEndian<u128>[src]

impl Eq for LittleEndian<f32>[src]

impl Eq for LittleEndian<f64>[src]

impl RefUnwindSafe for LittleEndian<AtomicI16>[src]

impl RefUnwindSafe for LittleEndian<AtomicI32>[src]

impl RefUnwindSafe for LittleEndian<AtomicI64>[src]

impl RefUnwindSafe for LittleEndian<AtomicU16>[src]

impl RefUnwindSafe for LittleEndian<AtomicU32>[src]

impl RefUnwindSafe for LittleEndian<AtomicU64>[src]

impl Sync for LittleEndian<AtomicI16>[src]

impl Sync for LittleEndian<AtomicI32>[src]

impl Sync for LittleEndian<AtomicI64>[src]

impl Sync for LittleEndian<AtomicU16>[src]

impl Sync for LittleEndian<AtomicU32>[src]

impl Sync for LittleEndian<AtomicU64>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for LittleEndian<T> where
    T: RefUnwindSafe

impl<T> Send for LittleEndian<T> where
    T: Send

impl<T> Sync for LittleEndian<T> where
    T: Sync

impl<T> Unpin for LittleEndian<T> where
    T: Unpin

impl<T> UnwindSafe for LittleEndian<T> where
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.