Struct rend::BigEndian[][src]

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

A wrapper for little-endian types.

Implementations

impl BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<&'_ f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = f64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = i64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u128

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u16

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u32

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u64

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

impl Binary for BigEndian<i16>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<i32>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroI64>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroI128>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroU16>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroU32>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroU64>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroU128>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<i64>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<i128>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<u16>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<u32>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<u64>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<u128>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroI16>[src]

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

Formats the value using the given formatter.

impl Binary for BigEndian<NonZeroI32>[src]

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

Formats the value using the given formatter.

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

type Output = i128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<&'_ i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = i64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u128

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u16

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u32

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u64

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<i128>> for BigEndian<i128>[src]

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

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

type Output = NonZeroI128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<&'_ i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<NonZeroI128>> for BigEndian<NonZeroI128>[src]

type Output = NonZeroI128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroI64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = NonZeroU64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = i64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u128

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<NonZeroI128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn bitor_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn bitor_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn bitor_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn bitor_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn bitor_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn bitor_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn bitor_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn bitor_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroI128>> for BigEndian<NonZeroI128>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroI128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroI16>> for BigEndian<NonZeroI16>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroI16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroI32>> for BigEndian<NonZeroI32>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroI32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroI64>> for BigEndian<NonZeroI64>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroI64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroU128>> for BigEndian<NonZeroU128>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroU128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroU16>> for BigEndian<NonZeroU16>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroU16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroU32>> for BigEndian<NonZeroU32>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroU32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<NonZeroU64>> for BigEndian<NonZeroU64>[src]

fn bitor_assign(&mut self, other: BigEndian<NonZeroU64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn bitor_assign(&mut self, other: BigEndian<i128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn bitor_assign(&mut self, other: BigEndian<i16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn bitor_assign(&mut self, other: BigEndian<i32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn bitor_assign(&mut self, other: BigEndian<i64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn bitor_assign(&mut self, other: BigEndian<u128>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn bitor_assign(&mut self, other: BigEndian<u16>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn bitor_assign(&mut self, other: BigEndian<u32>)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn bitor_assign(&mut self, other: BigEndian<u64>)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI128> for BigEndian<NonZeroI128>[src]

fn bitor_assign(&mut self, other: NonZeroI128)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI16> for BigEndian<NonZeroI16>[src]

fn bitor_assign(&mut self, other: NonZeroI16)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI32> for BigEndian<NonZeroI32>[src]

fn bitor_assign(&mut self, other: NonZeroI32)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroI64> for BigEndian<NonZeroI64>[src]

fn bitor_assign(&mut self, other: NonZeroI64)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU128> for BigEndian<NonZeroU128>[src]

fn bitor_assign(&mut self, other: NonZeroU128)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU16> for BigEndian<NonZeroU16>[src]

fn bitor_assign(&mut self, other: NonZeroU16)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU32> for BigEndian<NonZeroU32>[src]

fn bitor_assign(&mut self, other: NonZeroU32)[src]

Performs the |= operation. Read more

impl BitOrAssign<NonZeroU64> for BigEndian<NonZeroU64>[src]

fn bitor_assign(&mut self, other: NonZeroU64)[src]

Performs the |= operation. Read more

impl BitOrAssign<i128> for BigEndian<i128>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<i16> for BigEndian<i16>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<i32> for BigEndian<i32>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<i64> for BigEndian<i64>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<u128> for BigEndian<u128>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<u16> for BigEndian<u16>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<u32> for BigEndian<u32>[src]

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

Performs the |= operation. Read more

impl BitOrAssign<u64> for BigEndian<u64>[src]

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

Performs the |= operation. Read more

impl BitXor<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<&'_ i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn bitxor_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn bitxor_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn bitxor_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn bitxor_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn bitxor_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn bitxor_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn bitxor_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn bitxor_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn bitxor_assign(&mut self, other: BigEndian<i128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn bitxor_assign(&mut self, other: BigEndian<i16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn bitxor_assign(&mut self, other: BigEndian<i32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn bitxor_assign(&mut self, other: BigEndian<i64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn bitxor_assign(&mut self, other: BigEndian<u128>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn bitxor_assign(&mut self, other: BigEndian<u16>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn bitxor_assign(&mut self, other: BigEndian<u32>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn bitxor_assign(&mut self, other: BigEndian<u64>)[src]

Performs the ^= operation. Read more

impl BitXorAssign<i128> for BigEndian<i128>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<i16> for BigEndian<i16>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<i32> for BigEndian<i32>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<i64> for BigEndian<i64>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<u128> for BigEndian<u128>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<u16> for BigEndian<u16>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<u32> for BigEndian<u32>[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<u64> for BigEndian<u64>[src]

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

Performs the ^= operation. Read more

impl<T: Clone> Clone for BigEndian<T>[src]

fn clone(&self) -> BigEndian<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 BigEndian<i16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<i32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<char>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroI16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroI32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroI64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroI128>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroU16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroU32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroU64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<NonZeroU128>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicI16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<i64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicI32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicI64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicU16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicU32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<AtomicU64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<i128>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<u16>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<u32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<u64>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<u128>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<f32>[src]

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

Formats the value using the given formatter. Read more

impl Debug for BigEndian<f64>[src]

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

Formats the value using the given formatter. Read more

impl Default for BigEndian<i16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<i32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<char>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicI16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicI32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicI64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicU16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicU32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<AtomicU64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<i64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<i128>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<u16>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<u32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<u64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<u128>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<f32>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Default for BigEndian<f64>[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Display for BigEndian<i16>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<i32>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<char>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroI16>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroI32>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroI64>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroI128>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroU16>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroU32>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroU64>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<NonZeroU128>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<i64>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<i128>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<u16>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<u32>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<u64>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<u128>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<f32>[src]

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

Formats the value using the given formatter. Read more

impl Display for BigEndian<f64>[src]

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

Formats the value using the given formatter. Read more

impl Div<&'_ BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<&'_ f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

fn div_assign(&mut self, other: &BigEndian<f32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<f64>> for BigEndian<f64>[src]

fn div_assign(&mut self, other: &BigEndian<f64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn div_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn div_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn div_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn div_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn div_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn div_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn div_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn div_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ f32> for BigEndian<f32>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ f64> for BigEndian<f64>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the /= operation. Read more

impl DivAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the /= operation. Read more

impl DivAssign<BigEndian<f32>> for BigEndian<f32>[src]

fn div_assign(&mut self, other: BigEndian<f32>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<f64>> for BigEndian<f64>[src]

fn div_assign(&mut self, other: BigEndian<f64>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn div_assign(&mut self, other: BigEndian<i128>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn div_assign(&mut self, other: BigEndian<i16>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn div_assign(&mut self, other: BigEndian<i32>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn div_assign(&mut self, other: BigEndian<i64>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn div_assign(&mut self, other: BigEndian<u128>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn div_assign(&mut self, other: BigEndian<u16>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn div_assign(&mut self, other: BigEndian<u32>)[src]

Performs the /= operation. Read more

impl DivAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn div_assign(&mut self, other: BigEndian<u64>)[src]

Performs the /= operation. Read more

impl DivAssign<f32> for BigEndian<f32>[src]

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

Performs the /= operation. Read more

impl DivAssign<f64> for BigEndian<f64>[src]

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

Performs the /= operation. Read more

impl DivAssign<i128> for BigEndian<i128>[src]

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

Performs the /= operation. Read more

impl DivAssign<i16> for BigEndian<i16>[src]

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

Performs the /= operation. Read more

impl DivAssign<i32> for BigEndian<i32>[src]

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

Performs the /= operation. Read more

impl DivAssign<i64> for BigEndian<i64>[src]

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

Performs the /= operation. Read more

impl DivAssign<u128> for BigEndian<u128>[src]

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

Performs the /= operation. Read more

impl DivAssign<u16> for BigEndian<u16>[src]

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

Performs the /= operation. Read more

impl DivAssign<u32> for BigEndian<u32>[src]

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

Performs the /= operation. Read more

impl DivAssign<u64> for BigEndian<u64>[src]

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

Performs the /= operation. Read more

impl<'a> From<&'a NonZeroI128> for BigEndian<NonZeroI128>[src]

fn from(value: &'a NonZeroI128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI16> for BigEndian<NonZeroI16>[src]

fn from(value: &'a NonZeroI16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI32> for BigEndian<NonZeroI32>[src]

fn from(value: &'a NonZeroI32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroI64> for BigEndian<NonZeroI64>[src]

fn from(value: &'a NonZeroI64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU128> for BigEndian<NonZeroU128>[src]

fn from(value: &'a NonZeroU128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU16> for BigEndian<NonZeroU16>[src]

fn from(value: &'a NonZeroU16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU32> for BigEndian<NonZeroU32>[src]

fn from(value: &'a NonZeroU32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a NonZeroU64> for BigEndian<NonZeroU64>[src]

fn from(value: &'a NonZeroU64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a char> for BigEndian<char>[src]

fn from(value: &'a char) -> Self[src]

Performs the conversion.

impl<'a> From<&'a f32> for BigEndian<f32>[src]

fn from(value: &'a f32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a f64> for BigEndian<f64>[src]

fn from(value: &'a f64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i128> for BigEndian<i128>[src]

fn from(value: &'a i128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i16> for BigEndian<i16>[src]

fn from(value: &'a i16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i32> for BigEndian<i32>[src]

fn from(value: &'a i32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a i64> for BigEndian<i64>[src]

fn from(value: &'a i64) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u128> for BigEndian<u128>[src]

fn from(value: &'a u128) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u16> for BigEndian<u16>[src]

fn from(value: &'a u16) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u32> for BigEndian<u32>[src]

fn from(value: &'a u32) -> Self[src]

Performs the conversion.

impl<'a> From<&'a u64> for BigEndian<u64>[src]

fn from(value: &'a u64) -> Self[src]

Performs the conversion.

impl From<NonZeroI128> for BigEndian<NonZeroI128>[src]

fn from(value: NonZeroI128) -> Self[src]

Performs the conversion.

impl From<NonZeroI16> for BigEndian<NonZeroI16>[src]

fn from(value: NonZeroI16) -> Self[src]

Performs the conversion.

impl From<NonZeroI32> for BigEndian<NonZeroI32>[src]

fn from(value: NonZeroI32) -> Self[src]

Performs the conversion.

impl From<NonZeroI64> for BigEndian<NonZeroI64>[src]

fn from(value: NonZeroI64) -> Self[src]

Performs the conversion.

impl From<NonZeroU128> for BigEndian<NonZeroU128>[src]

fn from(value: NonZeroU128) -> Self[src]

Performs the conversion.

impl From<NonZeroU16> for BigEndian<NonZeroU16>[src]

fn from(value: NonZeroU16) -> Self[src]

Performs the conversion.

impl From<NonZeroU32> for BigEndian<NonZeroU32>[src]

fn from(value: NonZeroU32) -> Self[src]

Performs the conversion.

impl From<NonZeroU64> for BigEndian<NonZeroU64>[src]

fn from(value: NonZeroU64) -> Self[src]

Performs the conversion.

impl From<char> for BigEndian<char>[src]

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

Performs the conversion.

impl From<f32> for BigEndian<f32>[src]

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

Performs the conversion.

impl From<f64> for BigEndian<f64>[src]

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

Performs the conversion.

impl From<i128> for BigEndian<i128>[src]

fn from(value: i128) -> Self[src]

Performs the conversion.

impl From<i16> for BigEndian<i16>[src]

fn from(value: i16) -> Self[src]

Performs the conversion.

impl From<i16> for BigEndian<AtomicI16>[src]

fn from(value: i16) -> Self[src]

Performs the conversion.

impl From<i32> for BigEndian<i32>[src]

fn from(value: i32) -> Self[src]

Performs the conversion.

impl From<i32> for BigEndian<AtomicI32>[src]

fn from(value: i32) -> Self[src]

Performs the conversion.

impl From<i64> for BigEndian<i64>[src]

fn from(value: i64) -> Self[src]

Performs the conversion.

impl From<i64> for BigEndian<AtomicI64>[src]

fn from(value: i64) -> Self[src]

Performs the conversion.

impl From<u128> for BigEndian<u128>[src]

fn from(value: u128) -> Self[src]

Performs the conversion.

impl From<u16> for BigEndian<u16>[src]

fn from(value: u16) -> Self[src]

Performs the conversion.

impl From<u16> for BigEndian<AtomicU16>[src]

fn from(value: u16) -> Self[src]

Performs the conversion.

impl From<u32> for BigEndian<u32>[src]

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

Performs the conversion.

impl From<u32> for BigEndian<AtomicU32>[src]

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

Performs the conversion.

impl From<u64> for BigEndian<u64>[src]

fn from(value: u64) -> Self[src]

Performs the conversion.

impl From<u64> for BigEndian<AtomicU64>[src]

fn from(value: u64) -> Self[src]

Performs the conversion.

impl Hash for BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<i16>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<i32>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<i64>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<i128>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<u16>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<u32>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<u64>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<u128>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<f32>[src]

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

Formats the value using the given formatter.

impl LowerExp for BigEndian<f64>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<i16>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<i32>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroI64>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroI128>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroU16>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroU32>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroU64>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroU128>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<i64>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<i128>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<u16>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<u32>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<u64>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<u128>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroI16>[src]

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

Formats the value using the given formatter.

impl LowerHex for BigEndian<NonZeroI32>[src]

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

Formats the value using the given formatter.

impl Mul<&'_ BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<&'_ f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

fn mul_assign(&mut self, other: &BigEndian<f32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<f64>> for BigEndian<f64>[src]

fn mul_assign(&mut self, other: &BigEndian<f64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn mul_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn mul_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn mul_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn mul_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn mul_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn mul_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn mul_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn mul_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ f32> for BigEndian<f32>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ f64> for BigEndian<f64>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the *= operation. Read more

impl MulAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the *= operation. Read more

impl MulAssign<BigEndian<f32>> for BigEndian<f32>[src]

fn mul_assign(&mut self, other: BigEndian<f32>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<f64>> for BigEndian<f64>[src]

fn mul_assign(&mut self, other: BigEndian<f64>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn mul_assign(&mut self, other: BigEndian<i128>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn mul_assign(&mut self, other: BigEndian<i16>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn mul_assign(&mut self, other: BigEndian<i32>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn mul_assign(&mut self, other: BigEndian<i64>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn mul_assign(&mut self, other: BigEndian<u128>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn mul_assign(&mut self, other: BigEndian<u16>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn mul_assign(&mut self, other: BigEndian<u32>)[src]

Performs the *= operation. Read more

impl MulAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn mul_assign(&mut self, other: BigEndian<u64>)[src]

Performs the *= operation. Read more

impl MulAssign<f32> for BigEndian<f32>[src]

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

Performs the *= operation. Read more

impl MulAssign<f64> for BigEndian<f64>[src]

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

Performs the *= operation. Read more

impl MulAssign<i128> for BigEndian<i128>[src]

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

Performs the *= operation. Read more

impl MulAssign<i16> for BigEndian<i16>[src]

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

Performs the *= operation. Read more

impl MulAssign<i32> for BigEndian<i32>[src]

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

Performs the *= operation. Read more

impl MulAssign<i64> for BigEndian<i64>[src]

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

Performs the *= operation. Read more

impl MulAssign<u128> for BigEndian<u128>[src]

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

Performs the *= operation. Read more

impl MulAssign<u16> for BigEndian<u16>[src]

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

Performs the *= operation. Read more

impl MulAssign<u32> for BigEndian<u32>[src]

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

Performs the *= operation. Read more

impl MulAssign<u64> for BigEndian<u64>[src]

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

Performs the *= operation. Read more

impl Neg for BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<i16>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<i32>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroI64>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroI128>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroU16>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroU32>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroU64>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroU128>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<i64>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<i128>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<u16>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<u32>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<u64>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<u128>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroI16>[src]

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

Formats the value using the given formatter.

impl Octal for BigEndian<NonZeroI32>[src]

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

Formats the value using the given formatter.

impl Ord for BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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<BigEndian<NonZeroI128>> for BigEndian<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<BigEndian<NonZeroI16>> for BigEndian<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<BigEndian<NonZeroI32>> for BigEndian<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<BigEndian<NonZeroI64>> for BigEndian<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<BigEndian<NonZeroU128>> for BigEndian<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<BigEndian<NonZeroU16>> for BigEndian<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<BigEndian<NonZeroU32>> for BigEndian<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<BigEndian<NonZeroU64>> for BigEndian<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<BigEndian<char>> for BigEndian<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<BigEndian<f32>> for BigEndian<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<BigEndian<f64>> for BigEndian<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<BigEndian<i128>> for BigEndian<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<BigEndian<i16>> for BigEndian<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<BigEndian<i32>> for BigEndian<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<BigEndian<i64>> for BigEndian<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<BigEndian<u128>> for BigEndian<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<BigEndian<u16>> for BigEndian<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<BigEndian<u32>> for BigEndian<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<BigEndian<u64>> for BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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<BigEndian<NonZeroI128>> for BigEndian<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<BigEndian<NonZeroI16>> for BigEndian<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<BigEndian<NonZeroI32>> for BigEndian<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<BigEndian<NonZeroI64>> for BigEndian<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<BigEndian<NonZeroU128>> for BigEndian<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<BigEndian<NonZeroU16>> for BigEndian<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<BigEndian<NonZeroU32>> for BigEndian<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<BigEndian<NonZeroU64>> for BigEndian<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<BigEndian<char>> for BigEndian<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<BigEndian<f32>> for BigEndian<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<BigEndian<f64>> for BigEndian<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<BigEndian<i128>> for BigEndian<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<BigEndian<i16>> for BigEndian<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<BigEndian<i32>> for BigEndian<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<BigEndian<i64>> for BigEndian<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<BigEndian<u128>> for BigEndian<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<BigEndian<u16>> for BigEndian<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<BigEndian<u32>> for BigEndian<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<BigEndian<u64>> for BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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 BigEndian<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<BigEndian<f32>> for BigEndian<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<BigEndian<f64>> for BigEndian<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<BigEndian<i128>> for BigEndian<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<BigEndian<i16>> for BigEndian<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<BigEndian<i32>> for BigEndian<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<BigEndian<i64>> for BigEndian<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<BigEndian<u128>> for BigEndian<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<BigEndian<u16>> for BigEndian<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<BigEndian<u32>> for BigEndian<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<BigEndian<u64>> for BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<&'_ f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

fn rem_assign(&mut self, other: &BigEndian<f32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<f64>> for BigEndian<f64>[src]

fn rem_assign(&mut self, other: &BigEndian<f64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn rem_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn rem_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn rem_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn rem_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn rem_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn rem_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn rem_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn rem_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ f32> for BigEndian<f32>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ f64> for BigEndian<f64>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the %= operation. Read more

impl RemAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the %= operation. Read more

impl RemAssign<BigEndian<f32>> for BigEndian<f32>[src]

fn rem_assign(&mut self, other: BigEndian<f32>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<f64>> for BigEndian<f64>[src]

fn rem_assign(&mut self, other: BigEndian<f64>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn rem_assign(&mut self, other: BigEndian<i128>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn rem_assign(&mut self, other: BigEndian<i16>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn rem_assign(&mut self, other: BigEndian<i32>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn rem_assign(&mut self, other: BigEndian<i64>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn rem_assign(&mut self, other: BigEndian<u128>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn rem_assign(&mut self, other: BigEndian<u16>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn rem_assign(&mut self, other: BigEndian<u32>)[src]

Performs the %= operation. Read more

impl RemAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn rem_assign(&mut self, other: BigEndian<u64>)[src]

Performs the %= operation. Read more

impl RemAssign<f32> for BigEndian<f32>[src]

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

Performs the %= operation. Read more

impl RemAssign<f64> for BigEndian<f64>[src]

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

Performs the %= operation. Read more

impl RemAssign<i128> for BigEndian<i128>[src]

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

Performs the %= operation. Read more

impl RemAssign<i16> for BigEndian<i16>[src]

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

Performs the %= operation. Read more

impl RemAssign<i32> for BigEndian<i32>[src]

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

Performs the %= operation. Read more

impl RemAssign<i64> for BigEndian<i64>[src]

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

Performs the %= operation. Read more

impl RemAssign<u128> for BigEndian<u128>[src]

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

Performs the %= operation. Read more

impl RemAssign<u16> for BigEndian<u16>[src]

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

Performs the %= operation. Read more

impl RemAssign<u32> for BigEndian<u32>[src]

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

Performs the %= operation. Read more

impl RemAssign<u64> for BigEndian<u64>[src]

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

Performs the %= operation. Read more

impl Shl<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<&'_ i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn shl_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn shl_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn shl_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn shl_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn shl_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn shl_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn shl_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn shl_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ i128> for BigEndian<i128>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ i16> for BigEndian<i16>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ i32> for BigEndian<i32>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ i64> for BigEndian<i64>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ u128> for BigEndian<u128>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ u16> for BigEndian<u16>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ u32> for BigEndian<u32>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<&'_ u64> for BigEndian<u64>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn shl_assign(&mut self, other: BigEndian<i128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn shl_assign(&mut self, other: BigEndian<i16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn shl_assign(&mut self, other: BigEndian<i32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn shl_assign(&mut self, other: BigEndian<i64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn shl_assign(&mut self, other: BigEndian<u128>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn shl_assign(&mut self, other: BigEndian<u16>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn shl_assign(&mut self, other: BigEndian<u32>)[src]

Performs the <<= operation. Read more

impl ShlAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn shl_assign(&mut self, other: BigEndian<u64>)[src]

Performs the <<= operation. Read more

impl ShlAssign<i128> for BigEndian<i128>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<i16> for BigEndian<i16>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<i32> for BigEndian<i32>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<i64> for BigEndian<i64>[src]

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

Performs the <<= operation. Read more

impl ShlAssign<u128> for BigEndian<u128>[src]

fn shl_assign(&mut self, other: u128)[src]

Performs the <<= operation. Read more

impl ShlAssign<u16> for BigEndian<u16>[src]

fn shl_assign(&mut self, other: u16)[src]

Performs the <<= operation. Read more

impl ShlAssign<u32> for BigEndian<u32>[src]

fn shl_assign(&mut self, other: u32)[src]

Performs the <<= operation. Read more

impl ShlAssign<u64> for BigEndian<u64>[src]

fn shl_assign(&mut self, other: u64)[src]

Performs the <<= operation. Read more

impl Shr<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: &BigEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<i64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u128>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u16>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u32>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the >> operator.

fn shr(self, other: BigEndian<u64>) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<i128> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn shr_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn shr_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn shr_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn shr_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn shr_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn shr_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn shr_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn shr_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i128> for BigEndian<i128>[src]

fn shr_assign(&mut self, other: &i128)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i16> for BigEndian<i16>[src]

fn shr_assign(&mut self, other: &i16)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i32> for BigEndian<i32>[src]

fn shr_assign(&mut self, other: &i32)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ i64> for BigEndian<i64>[src]

fn shr_assign(&mut self, other: &i64)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u128> for BigEndian<u128>[src]

fn shr_assign(&mut self, other: &u128)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u16> for BigEndian<u16>[src]

fn shr_assign(&mut self, other: &u16)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u32> for BigEndian<u32>[src]

fn shr_assign(&mut self, other: &u32)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u64> for BigEndian<u64>[src]

fn shr_assign(&mut self, other: &u64)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn shr_assign(&mut self, other: BigEndian<i128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn shr_assign(&mut self, other: BigEndian<i16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn shr_assign(&mut self, other: BigEndian<i32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn shr_assign(&mut self, other: BigEndian<i64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn shr_assign(&mut self, other: BigEndian<u128>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn shr_assign(&mut self, other: BigEndian<u16>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn shr_assign(&mut self, other: BigEndian<u32>)[src]

Performs the >>= operation. Read more

impl ShrAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn shr_assign(&mut self, other: BigEndian<u64>)[src]

Performs the >>= operation. Read more

impl ShrAssign<i128> for BigEndian<i128>[src]

fn shr_assign(&mut self, other: i128)[src]

Performs the >>= operation. Read more

impl ShrAssign<i16> for BigEndian<i16>[src]

fn shr_assign(&mut self, other: i16)[src]

Performs the >>= operation. Read more

impl ShrAssign<i32> for BigEndian<i32>[src]

fn shr_assign(&mut self, other: i32)[src]

Performs the >>= operation. Read more

impl ShrAssign<i64> for BigEndian<i64>[src]

fn shr_assign(&mut self, other: i64)[src]

Performs the >>= operation. Read more

impl ShrAssign<u128> for BigEndian<u128>[src]

fn shr_assign(&mut self, other: u128)[src]

Performs the >>= operation. Read more

impl ShrAssign<u16> for BigEndian<u16>[src]

fn shr_assign(&mut self, other: u16)[src]

Performs the >>= operation. Read more

impl ShrAssign<u32> for BigEndian<u32>[src]

fn shr_assign(&mut self, other: u32)[src]

Performs the >>= operation. Read more

impl ShrAssign<u64> for BigEndian<u64>[src]

fn shr_assign(&mut self, other: u64)[src]

Performs the >>= operation. Read more

impl Sub<&'_ BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: &BigEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<BigEndian<f32>> for BigEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<f32>> for &BigEndian<f32>[src]

type Output = f32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<f32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<f64>> for BigEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<f64>> for &BigEndian<f64>[src]

type Output = f64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<f64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i128>> for BigEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i128>> for &BigEndian<i128>[src]

type Output = i128

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i16>> for BigEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i16>> for &BigEndian<i16>[src]

type Output = i16

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i32>> for BigEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i32>> for &BigEndian<i32>[src]

type Output = i32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i64>> for BigEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<i64>> for &BigEndian<i64>[src]

type Output = i64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<i64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u128>> for BigEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u128>> for &BigEndian<u128>[src]

type Output = u128

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u128>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u16>> for BigEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u16>> for &BigEndian<u16>[src]

type Output = u16

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u16>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u32>> for BigEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u32>> for &BigEndian<u32>[src]

type Output = u32

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u32>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u64>> for BigEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<BigEndian<u64>> for &BigEndian<u64>[src]

type Output = u64

The resulting type after applying the - operator.

fn sub(self, other: BigEndian<u64>) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<f32> for BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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 BigEndian<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 &BigEndian<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<&'_ BigEndian<f32>> for BigEndian<f32>[src]

fn sub_assign(&mut self, other: &BigEndian<f32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<f64>> for BigEndian<f64>[src]

fn sub_assign(&mut self, other: &BigEndian<f64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<i128>> for BigEndian<i128>[src]

fn sub_assign(&mut self, other: &BigEndian<i128>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<i16>> for BigEndian<i16>[src]

fn sub_assign(&mut self, other: &BigEndian<i16>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<i32>> for BigEndian<i32>[src]

fn sub_assign(&mut self, other: &BigEndian<i32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<i64>> for BigEndian<i64>[src]

fn sub_assign(&mut self, other: &BigEndian<i64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<u128>> for BigEndian<u128>[src]

fn sub_assign(&mut self, other: &BigEndian<u128>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<u16>> for BigEndian<u16>[src]

fn sub_assign(&mut self, other: &BigEndian<u16>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<u32>> for BigEndian<u32>[src]

fn sub_assign(&mut self, other: &BigEndian<u32>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ BigEndian<u64>> for BigEndian<u64>[src]

fn sub_assign(&mut self, other: &BigEndian<u64>)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ f32> for BigEndian<f32>[src]

fn sub_assign(&mut self, other: &f32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ f64> for BigEndian<f64>[src]

fn sub_assign(&mut self, other: &f64)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i128> for BigEndian<i128>[src]

fn sub_assign(&mut self, other: &i128)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i16> for BigEndian<i16>[src]

fn sub_assign(&mut self, other: &i16)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i32> for BigEndian<i32>[src]

fn sub_assign(&mut self, other: &i32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ i64> for BigEndian<i64>[src]

fn sub_assign(&mut self, other: &i64)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u128> for BigEndian<u128>[src]

fn sub_assign(&mut self, other: &u128)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u16> for BigEndian<u16>[src]

fn sub_assign(&mut self, other: &u16)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u32> for BigEndian<u32>[src]

fn sub_assign(&mut self, other: &u32)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u64> for BigEndian<u64>[src]

fn sub_assign(&mut self, other: &u64)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<f32>> for BigEndian<f32>[src]

fn sub_assign(&mut self, other: BigEndian<f32>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<f64>> for BigEndian<f64>[src]

fn sub_assign(&mut self, other: BigEndian<f64>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<i128>> for BigEndian<i128>[src]

fn sub_assign(&mut self, other: BigEndian<i128>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<i16>> for BigEndian<i16>[src]

fn sub_assign(&mut self, other: BigEndian<i16>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<i32>> for BigEndian<i32>[src]

fn sub_assign(&mut self, other: BigEndian<i32>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<i64>> for BigEndian<i64>[src]

fn sub_assign(&mut self, other: BigEndian<i64>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<u128>> for BigEndian<u128>[src]

fn sub_assign(&mut self, other: BigEndian<u128>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<u16>> for BigEndian<u16>[src]

fn sub_assign(&mut self, other: BigEndian<u16>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<u32>> for BigEndian<u32>[src]

fn sub_assign(&mut self, other: BigEndian<u32>)[src]

Performs the -= operation. Read more

impl SubAssign<BigEndian<u64>> for BigEndian<u64>[src]

fn sub_assign(&mut self, other: BigEndian<u64>)[src]

Performs the -= operation. Read more

impl SubAssign<f32> for BigEndian<f32>[src]

fn sub_assign(&mut self, other: f32)[src]

Performs the -= operation. Read more

impl SubAssign<f64> for BigEndian<f64>[src]

fn sub_assign(&mut self, other: f64)[src]

Performs the -= operation. Read more

impl SubAssign<i128> for BigEndian<i128>[src]

fn sub_assign(&mut self, other: i128)[src]

Performs the -= operation. Read more

impl SubAssign<i16> for BigEndian<i16>[src]

fn sub_assign(&mut self, other: i16)[src]

Performs the -= operation. Read more

impl SubAssign<i32> for BigEndian<i32>[src]

fn sub_assign(&mut self, other: i32)[src]

Performs the -= operation. Read more

impl SubAssign<i64> for BigEndian<i64>[src]

fn sub_assign(&mut self, other: i64)[src]

Performs the -= operation. Read more

impl SubAssign<u128> for BigEndian<u128>[src]

fn sub_assign(&mut self, other: u128)[src]

Performs the -= operation. Read more

impl SubAssign<u16> for BigEndian<u16>[src]

fn sub_assign(&mut self, other: u16)[src]

Performs the -= operation. Read more

impl SubAssign<u32> for BigEndian<u32>[src]

fn sub_assign(&mut self, other: u32)[src]

Performs the -= operation. Read more

impl SubAssign<u64> for BigEndian<u64>[src]

fn sub_assign(&mut self, other: u64)[src]

Performs the -= operation. Read more

impl Sum<BigEndian<f32>> for BigEndian<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<BigEndian<f64>> for BigEndian<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<BigEndian<i128>> for BigEndian<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<BigEndian<i16>> for BigEndian<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<BigEndian<i32>> for BigEndian<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<BigEndian<i64>> for BigEndian<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<BigEndian<u128>> for BigEndian<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<BigEndian<u16>> for BigEndian<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<BigEndian<u32>> for BigEndian<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<BigEndian<u64>> for BigEndian<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 BigEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<f32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperExp for BigEndian<f64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<i16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<i32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroI64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroI128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroU16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroU32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroU64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroU128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<i64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<i128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<u16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<u32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<u64>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<u128>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroI16>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl UpperHex for BigEndian<NonZeroI32>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter.

impl<T: Copy> Copy for BigEndian<T>[src]

impl Eq for BigEndian<i16>[src]

impl Eq for BigEndian<i32>[src]

impl Eq for BigEndian<char>[src]

impl Eq for BigEndian<NonZeroI16>[src]

impl Eq for BigEndian<NonZeroI32>[src]

impl Eq for BigEndian<NonZeroI64>[src]

impl Eq for BigEndian<NonZeroI128>[src]

impl Eq for BigEndian<NonZeroU16>[src]

impl Eq for BigEndian<NonZeroU32>[src]

impl Eq for BigEndian<NonZeroU64>[src]

impl Eq for BigEndian<NonZeroU128>[src]

impl Eq for BigEndian<i64>[src]

impl Eq for BigEndian<i128>[src]

impl Eq for BigEndian<u16>[src]

impl Eq for BigEndian<u32>[src]

impl Eq for BigEndian<u64>[src]

impl Eq for BigEndian<u128>[src]

impl Eq for BigEndian<f32>[src]

impl Eq for BigEndian<f64>[src]

impl RefUnwindSafe for BigEndian<AtomicI16>[src]

impl RefUnwindSafe for BigEndian<AtomicI32>[src]

impl RefUnwindSafe for BigEndian<AtomicI64>[src]

impl RefUnwindSafe for BigEndian<AtomicU16>[src]

impl RefUnwindSafe for BigEndian<AtomicU32>[src]

impl RefUnwindSafe for BigEndian<AtomicU64>[src]

impl Sync for BigEndian<AtomicI16>[src]

impl Sync for BigEndian<AtomicI32>[src]

impl Sync for BigEndian<AtomicI64>[src]

impl Sync for BigEndian<AtomicU16>[src]

impl Sync for BigEndian<AtomicU32>[src]

impl Sync for BigEndian<AtomicU64>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for BigEndian<T> where
    T: RefUnwindSafe

impl<T> Send for BigEndian<T> where
    T: Send

impl<T> Sync for BigEndian<T> where
    T: Sync

impl<T> Unpin for BigEndian<T> where
    T: Unpin

impl<T> UnwindSafe for BigEndian<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.