pub struct BigEndian<T: Primitive> { /* private fields */ }
Expand description
A wrapper for little-endian types.
Implementations§
source§impl BigEndian<i16>
impl BigEndian<i16>
sourcepub const fn to_ne(self) -> NativeEndian<i16>
pub const fn to_ne(self) -> NativeEndian<i16>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<i16>
pub const fn to_le(self) -> LittleEndian<i16>
Creates a LittleEndian
from this value
source§impl BigEndian<i32>
impl BigEndian<i32>
sourcepub const fn to_ne(self) -> NativeEndian<i32>
pub const fn to_ne(self) -> NativeEndian<i32>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<i32>
pub const fn to_le(self) -> LittleEndian<i32>
Creates a LittleEndian
from this value
source§impl BigEndian<i64>
impl BigEndian<i64>
sourcepub const fn to_ne(self) -> NativeEndian<i64>
pub const fn to_ne(self) -> NativeEndian<i64>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<i64>
pub const fn to_le(self) -> LittleEndian<i64>
Creates a LittleEndian
from this value
source§impl BigEndian<i128>
impl BigEndian<i128>
sourcepub const fn to_ne(self) -> NativeEndian<i128>
pub const fn to_ne(self) -> NativeEndian<i128>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<i128>
pub const fn to_le(self) -> LittleEndian<i128>
Creates a LittleEndian
from this value
source§impl BigEndian<u16>
impl BigEndian<u16>
sourcepub const fn to_ne(self) -> NativeEndian<u16>
pub const fn to_ne(self) -> NativeEndian<u16>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<u16>
pub const fn to_le(self) -> LittleEndian<u16>
Creates a LittleEndian
from this value
source§impl BigEndian<u32>
impl BigEndian<u32>
sourcepub const fn to_ne(self) -> NativeEndian<u32>
pub const fn to_ne(self) -> NativeEndian<u32>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<u32>
pub const fn to_le(self) -> LittleEndian<u32>
Creates a LittleEndian
from this value
source§impl BigEndian<u64>
impl BigEndian<u64>
sourcepub const fn to_ne(self) -> NativeEndian<u64>
pub const fn to_ne(self) -> NativeEndian<u64>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<u64>
pub const fn to_le(self) -> LittleEndian<u64>
Creates a LittleEndian
from this value
source§impl BigEndian<u128>
impl BigEndian<u128>
sourcepub const fn to_ne(self) -> NativeEndian<u128>
pub const fn to_ne(self) -> NativeEndian<u128>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<u128>
pub const fn to_le(self) -> LittleEndian<u128>
Creates a LittleEndian
from this value
source§impl BigEndian<f32>
impl BigEndian<f32>
sourcepub fn to_ne(self) -> NativeEndian<f32>
pub fn to_ne(self) -> NativeEndian<f32>
Creates a NativeEndian
from this value
sourcepub fn to_le(self) -> LittleEndian<f32>
pub fn to_le(self) -> LittleEndian<f32>
Creates a LittleEndian
from this value
source§impl BigEndian<f64>
impl BigEndian<f64>
sourcepub fn to_ne(self) -> NativeEndian<f64>
pub fn to_ne(self) -> NativeEndian<f64>
Creates a NativeEndian
from this value
sourcepub fn to_le(self) -> LittleEndian<f64>
pub fn to_le(self) -> LittleEndian<f64>
Creates a LittleEndian
from this value
source§impl BigEndian<char>
impl BigEndian<char>
sourcepub fn to_ne(self) -> NativeEndian<char>
pub fn to_ne(self) -> NativeEndian<char>
Creates a NativeEndian
from this value
sourcepub fn to_le(self) -> LittleEndian<char>
pub fn to_le(self) -> LittleEndian<char>
Creates a LittleEndian
from this value
source§impl BigEndian<NonZeroI16>
impl BigEndian<NonZeroI16>
sourcepub const fn new(value: NonZeroI16) -> Self
pub const fn new(value: NonZeroI16) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroI16
pub const fn value(self) -> NonZeroI16
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroI16>
pub const fn to_ne(self) -> NativeEndian<NonZeroI16>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroI16>
pub const fn to_le(self) -> LittleEndian<NonZeroI16>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroI16>
pub const fn to_be(self) -> BigEndian<NonZeroI16>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroI32>
impl BigEndian<NonZeroI32>
sourcepub const fn new(value: NonZeroI32) -> Self
pub const fn new(value: NonZeroI32) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroI32
pub const fn value(self) -> NonZeroI32
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroI32>
pub const fn to_ne(self) -> NativeEndian<NonZeroI32>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroI32>
pub const fn to_le(self) -> LittleEndian<NonZeroI32>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroI32>
pub const fn to_be(self) -> BigEndian<NonZeroI32>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroI64>
impl BigEndian<NonZeroI64>
sourcepub const fn new(value: NonZeroI64) -> Self
pub const fn new(value: NonZeroI64) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroI64
pub const fn value(self) -> NonZeroI64
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroI64>
pub const fn to_ne(self) -> NativeEndian<NonZeroI64>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroI64>
pub const fn to_le(self) -> LittleEndian<NonZeroI64>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroI64>
pub const fn to_be(self) -> BigEndian<NonZeroI64>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroI128>
impl BigEndian<NonZeroI128>
sourcepub const fn new(value: NonZeroI128) -> Self
pub const fn new(value: NonZeroI128) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroI128
pub const fn value(self) -> NonZeroI128
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroI128>
pub const fn to_ne(self) -> NativeEndian<NonZeroI128>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroI128>
pub const fn to_le(self) -> LittleEndian<NonZeroI128>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroI128>
pub const fn to_be(self) -> BigEndian<NonZeroI128>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroU16>
impl BigEndian<NonZeroU16>
sourcepub const fn new(value: NonZeroU16) -> Self
pub const fn new(value: NonZeroU16) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroU16
pub const fn value(self) -> NonZeroU16
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroU16>
pub const fn to_ne(self) -> NativeEndian<NonZeroU16>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroU16>
pub const fn to_le(self) -> LittleEndian<NonZeroU16>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroU16>
pub const fn to_be(self) -> BigEndian<NonZeroU16>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroU32>
impl BigEndian<NonZeroU32>
sourcepub const fn new(value: NonZeroU32) -> Self
pub const fn new(value: NonZeroU32) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroU32
pub const fn value(self) -> NonZeroU32
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroU32>
pub const fn to_ne(self) -> NativeEndian<NonZeroU32>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroU32>
pub const fn to_le(self) -> LittleEndian<NonZeroU32>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroU32>
pub const fn to_be(self) -> BigEndian<NonZeroU32>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroU64>
impl BigEndian<NonZeroU64>
sourcepub const fn new(value: NonZeroU64) -> Self
pub const fn new(value: NonZeroU64) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroU64
pub const fn value(self) -> NonZeroU64
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroU64>
pub const fn to_ne(self) -> NativeEndian<NonZeroU64>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroU64>
pub const fn to_le(self) -> LittleEndian<NonZeroU64>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroU64>
pub const fn to_be(self) -> BigEndian<NonZeroU64>
Creates a BigEndian
from this value
source§impl BigEndian<NonZeroU128>
impl BigEndian<NonZeroU128>
sourcepub const fn new(value: NonZeroU128) -> Self
pub const fn new(value: NonZeroU128) -> Self
Creates a new value from a native-endian value
sourcepub const fn value(self) -> NonZeroU128
pub const fn value(self) -> NonZeroU128
Converts the value to a native-endian value
sourcepub const fn to_ne(self) -> NativeEndian<NonZeroU128>
pub const fn to_ne(self) -> NativeEndian<NonZeroU128>
Creates a NativeEndian
from this value
sourcepub const fn to_le(self) -> LittleEndian<NonZeroU128>
pub const fn to_le(self) -> LittleEndian<NonZeroU128>
Creates a LittleEndian
from this value
sourcepub const fn to_be(self) -> BigEndian<NonZeroU128>
pub const fn to_be(self) -> BigEndian<NonZeroU128>
Creates a BigEndian
from this value
source§impl BigEndian<AtomicI16>
impl BigEndian<AtomicI16>
sourcepub fn compare_exchange(
&self,
current: i16,
new: i16,
success: Ordering,
failure: Ordering,
) -> Result<i16, i16>
pub fn compare_exchange( &self, current: i16, new: i16, success: Ordering, failure: Ordering, ) -> Result<i16, i16>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: i16, order: Ordering) -> i16
pub fn fetch_add(&self, val: i16, order: Ordering) -> i16
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: i16, order: Ordering) -> i16
pub fn fetch_and(&self, val: i16, order: Ordering) -> i16
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: i16, order: Ordering) -> i16
pub fn fetch_nand(&self, val: i16, order: Ordering) -> i16
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: i16, order: Ordering) -> i16
pub fn fetch_sub(&self, val: i16, order: Ordering) -> i16
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(i16) -> Option<i16>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<i16, i16>
pub fn fetch_update<F: FnMut(i16) -> Option<i16>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<i16, i16>
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)
.
sourcepub fn fetch_xor(&self, val: i16, order: Ordering) -> i16
pub fn fetch_xor(&self, val: i16, order: Ordering) -> i16
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> i16
pub fn into_inner(self) -> i16
Consumes the atomic and returns the contained value.
source§impl BigEndian<AtomicI32>
impl BigEndian<AtomicI32>
sourcepub fn compare_exchange(
&self,
current: i32,
new: i32,
success: Ordering,
failure: Ordering,
) -> Result<i32, i32>
pub fn compare_exchange( &self, current: i32, new: i32, success: Ordering, failure: Ordering, ) -> Result<i32, i32>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: i32, order: Ordering) -> i32
pub fn fetch_add(&self, val: i32, order: Ordering) -> i32
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: i32, order: Ordering) -> i32
pub fn fetch_and(&self, val: i32, order: Ordering) -> i32
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: i32, order: Ordering) -> i32
pub fn fetch_nand(&self, val: i32, order: Ordering) -> i32
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: i32, order: Ordering) -> i32
pub fn fetch_sub(&self, val: i32, order: Ordering) -> i32
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(i32) -> Option<i32>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<i32, i32>
pub fn fetch_update<F: FnMut(i32) -> Option<i32>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<i32, i32>
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)
.
sourcepub fn fetch_xor(&self, val: i32, order: Ordering) -> i32
pub fn fetch_xor(&self, val: i32, order: Ordering) -> i32
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> i32
pub fn into_inner(self) -> i32
Consumes the atomic and returns the contained value.
source§impl BigEndian<AtomicI64>
impl BigEndian<AtomicI64>
sourcepub fn compare_exchange(
&self,
current: i64,
new: i64,
success: Ordering,
failure: Ordering,
) -> Result<i64, i64>
pub fn compare_exchange( &self, current: i64, new: i64, success: Ordering, failure: Ordering, ) -> Result<i64, i64>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: i64, order: Ordering) -> i64
pub fn fetch_add(&self, val: i64, order: Ordering) -> i64
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: i64, order: Ordering) -> i64
pub fn fetch_and(&self, val: i64, order: Ordering) -> i64
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: i64, order: Ordering) -> i64
pub fn fetch_nand(&self, val: i64, order: Ordering) -> i64
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: i64, order: Ordering) -> i64
pub fn fetch_sub(&self, val: i64, order: Ordering) -> i64
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(i64) -> Option<i64>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<i64, i64>
pub fn fetch_update<F: FnMut(i64) -> Option<i64>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<i64, i64>
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)
.
sourcepub fn fetch_xor(&self, val: i64, order: Ordering) -> i64
pub fn fetch_xor(&self, val: i64, order: Ordering) -> i64
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> i64
pub fn into_inner(self) -> i64
Consumes the atomic and returns the contained value.
source§impl BigEndian<AtomicU16>
impl BigEndian<AtomicU16>
sourcepub fn compare_exchange(
&self,
current: u16,
new: u16,
success: Ordering,
failure: Ordering,
) -> Result<u16, u16>
pub fn compare_exchange( &self, current: u16, new: u16, success: Ordering, failure: Ordering, ) -> Result<u16, u16>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: u16, order: Ordering) -> u16
pub fn fetch_add(&self, val: u16, order: Ordering) -> u16
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: u16, order: Ordering) -> u16
pub fn fetch_and(&self, val: u16, order: Ordering) -> u16
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: u16, order: Ordering) -> u16
pub fn fetch_nand(&self, val: u16, order: Ordering) -> u16
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: u16, order: Ordering) -> u16
pub fn fetch_sub(&self, val: u16, order: Ordering) -> u16
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(u16) -> Option<u16>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<u16, u16>
pub fn fetch_update<F: FnMut(u16) -> Option<u16>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<u16, u16>
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)
.
sourcepub fn fetch_xor(&self, val: u16, order: Ordering) -> u16
pub fn fetch_xor(&self, val: u16, order: Ordering) -> u16
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> u16
pub fn into_inner(self) -> u16
Consumes the atomic and returns the contained value.
source§impl BigEndian<AtomicU32>
impl BigEndian<AtomicU32>
sourcepub fn compare_exchange(
&self,
current: u32,
new: u32,
success: Ordering,
failure: Ordering,
) -> Result<u32, u32>
pub fn compare_exchange( &self, current: u32, new: u32, success: Ordering, failure: Ordering, ) -> Result<u32, u32>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: u32, order: Ordering) -> u32
pub fn fetch_add(&self, val: u32, order: Ordering) -> u32
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: u32, order: Ordering) -> u32
pub fn fetch_and(&self, val: u32, order: Ordering) -> u32
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: u32, order: Ordering) -> u32
pub fn fetch_nand(&self, val: u32, order: Ordering) -> u32
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: u32, order: Ordering) -> u32
pub fn fetch_sub(&self, val: u32, order: Ordering) -> u32
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(u32) -> Option<u32>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<u32, u32>
pub fn fetch_update<F: FnMut(u32) -> Option<u32>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<u32, u32>
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)
.
sourcepub fn fetch_xor(&self, val: u32, order: Ordering) -> u32
pub fn fetch_xor(&self, val: u32, order: Ordering) -> u32
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> u32
pub fn into_inner(self) -> u32
Consumes the atomic and returns the contained value.
source§impl BigEndian<AtomicU64>
impl BigEndian<AtomicU64>
sourcepub fn compare_exchange(
&self,
current: u64,
new: u64,
success: Ordering,
failure: Ordering,
) -> Result<u64, u64>
pub fn compare_exchange( &self, current: u64, new: u64, success: Ordering, failure: Ordering, ) -> Result<u64, u64>
Stores a value into the atomic integer if the current value is the same as the
current
value.
sourcepub fn fetch_add(&self, val: u64, order: Ordering) -> u64
pub fn fetch_add(&self, val: u64, order: Ordering) -> u64
Adds to the current value, returning the previous value.
sourcepub fn fetch_and(&self, val: u64, order: Ordering) -> u64
pub fn fetch_and(&self, val: u64, order: Ordering) -> u64
Bitwise “and” with the current value.
sourcepub fn fetch_nand(&self, val: u64, order: Ordering) -> u64
pub fn fetch_nand(&self, val: u64, order: Ordering) -> u64
Bitwise “nand” with the current value.
sourcepub fn fetch_sub(&self, val: u64, order: Ordering) -> u64
pub fn fetch_sub(&self, val: u64, order: Ordering) -> u64
Subtracts from the current value, returning the previous value.
sourcepub fn fetch_update<F: FnMut(u64) -> Option<u64>>(
&self,
set_order: Ordering,
fetch_order: Ordering,
f: F,
) -> Result<u64, u64>
pub fn fetch_update<F: FnMut(u64) -> Option<u64>>( &self, set_order: Ordering, fetch_order: Ordering, f: F, ) -> Result<u64, u64>
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)
.
sourcepub fn fetch_xor(&self, val: u64, order: Ordering) -> u64
pub fn fetch_xor(&self, val: u64, order: Ordering) -> u64
Bitwise “xor” with the current value.
sourcepub fn into_inner(self) -> u64
pub fn into_inner(self) -> u64
Consumes the atomic and returns the contained value.
Trait Implementations§
source§impl AddAssign<&f32> for BigEndian<f32>
impl AddAssign<&f32> for BigEndian<f32>
source§fn add_assign(&mut self, other: &f32)
fn add_assign(&mut self, other: &f32)
+=
operation. Read moresource§impl AddAssign<&f64> for BigEndian<f64>
impl AddAssign<&f64> for BigEndian<f64>
source§fn add_assign(&mut self, other: &f64)
fn add_assign(&mut self, other: &f64)
+=
operation. Read moresource§impl AddAssign<&i128> for BigEndian<i128>
impl AddAssign<&i128> for BigEndian<i128>
source§fn add_assign(&mut self, other: &i128)
fn add_assign(&mut self, other: &i128)
+=
operation. Read moresource§impl AddAssign<&i16> for BigEndian<i16>
impl AddAssign<&i16> for BigEndian<i16>
source§fn add_assign(&mut self, other: &i16)
fn add_assign(&mut self, other: &i16)
+=
operation. Read moresource§impl AddAssign<&i32> for BigEndian<i32>
impl AddAssign<&i32> for BigEndian<i32>
source§fn add_assign(&mut self, other: &i32)
fn add_assign(&mut self, other: &i32)
+=
operation. Read moresource§impl AddAssign<&i64> for BigEndian<i64>
impl AddAssign<&i64> for BigEndian<i64>
source§fn add_assign(&mut self, other: &i64)
fn add_assign(&mut self, other: &i64)
+=
operation. Read moresource§impl AddAssign<&u128> for BigEndian<u128>
impl AddAssign<&u128> for BigEndian<u128>
source§fn add_assign(&mut self, other: &u128)
fn add_assign(&mut self, other: &u128)
+=
operation. Read moresource§impl AddAssign<&u16> for BigEndian<u16>
impl AddAssign<&u16> for BigEndian<u16>
source§fn add_assign(&mut self, other: &u16)
fn add_assign(&mut self, other: &u16)
+=
operation. Read moresource§impl AddAssign<&u32> for BigEndian<u32>
impl AddAssign<&u32> for BigEndian<u32>
source§fn add_assign(&mut self, other: &u32)
fn add_assign(&mut self, other: &u32)
+=
operation. Read moresource§impl AddAssign<&u64> for BigEndian<u64>
impl AddAssign<&u64> for BigEndian<u64>
source§fn add_assign(&mut self, other: &u64)
fn add_assign(&mut self, other: &u64)
+=
operation. Read moresource§impl AddAssign<f32> for BigEndian<f32>
impl AddAssign<f32> for BigEndian<f32>
source§fn add_assign(&mut self, other: f32)
fn add_assign(&mut self, other: f32)
+=
operation. Read moresource§impl AddAssign<f64> for BigEndian<f64>
impl AddAssign<f64> for BigEndian<f64>
source§fn add_assign(&mut self, other: f64)
fn add_assign(&mut self, other: f64)
+=
operation. Read moresource§impl AddAssign<i128> for BigEndian<i128>
impl AddAssign<i128> for BigEndian<i128>
source§fn add_assign(&mut self, other: i128)
fn add_assign(&mut self, other: i128)
+=
operation. Read moresource§impl AddAssign<i16> for BigEndian<i16>
impl AddAssign<i16> for BigEndian<i16>
source§fn add_assign(&mut self, other: i16)
fn add_assign(&mut self, other: i16)
+=
operation. Read moresource§impl AddAssign<i32> for BigEndian<i32>
impl AddAssign<i32> for BigEndian<i32>
source§fn add_assign(&mut self, other: i32)
fn add_assign(&mut self, other: i32)
+=
operation. Read moresource§impl AddAssign<i64> for BigEndian<i64>
impl AddAssign<i64> for BigEndian<i64>
source§fn add_assign(&mut self, other: i64)
fn add_assign(&mut self, other: i64)
+=
operation. Read moresource§impl AddAssign<u128> for BigEndian<u128>
impl AddAssign<u128> for BigEndian<u128>
source§fn add_assign(&mut self, other: u128)
fn add_assign(&mut self, other: u128)
+=
operation. Read moresource§impl AddAssign<u16> for BigEndian<u16>
impl AddAssign<u16> for BigEndian<u16>
source§fn add_assign(&mut self, other: u16)
fn add_assign(&mut self, other: u16)
+=
operation. Read moresource§impl AddAssign<u32> for BigEndian<u32>
impl AddAssign<u32> for BigEndian<u32>
source§fn add_assign(&mut self, other: u32)
fn add_assign(&mut self, other: u32)
+=
operation. Read moresource§impl AddAssign<u64> for BigEndian<u64>
impl AddAssign<u64> for BigEndian<u64>
source§fn add_assign(&mut self, other: u64)
fn add_assign(&mut self, other: u64)
+=
operation. Read moresource§impl Binary for BigEndian<NonZeroI128>
impl Binary for BigEndian<NonZeroI128>
source§impl Binary for BigEndian<NonZeroI16>
impl Binary for BigEndian<NonZeroI16>
source§impl Binary for BigEndian<NonZeroI32>
impl Binary for BigEndian<NonZeroI32>
source§impl Binary for BigEndian<NonZeroI64>
impl Binary for BigEndian<NonZeroI64>
source§impl Binary for BigEndian<NonZeroU128>
impl Binary for BigEndian<NonZeroU128>
source§impl Binary for BigEndian<NonZeroU16>
impl Binary for BigEndian<NonZeroU16>
source§impl Binary for BigEndian<NonZeroU32>
impl Binary for BigEndian<NonZeroU32>
source§impl Binary for BigEndian<NonZeroU64>
impl Binary for BigEndian<NonZeroU64>
source§impl BitAndAssign<&i128> for BigEndian<i128>
impl BitAndAssign<&i128> for BigEndian<i128>
source§fn bitand_assign(&mut self, other: &i128)
fn bitand_assign(&mut self, other: &i128)
&=
operation. Read moresource§impl BitAndAssign<&i16> for BigEndian<i16>
impl BitAndAssign<&i16> for BigEndian<i16>
source§fn bitand_assign(&mut self, other: &i16)
fn bitand_assign(&mut self, other: &i16)
&=
operation. Read moresource§impl BitAndAssign<&i32> for BigEndian<i32>
impl BitAndAssign<&i32> for BigEndian<i32>
source§fn bitand_assign(&mut self, other: &i32)
fn bitand_assign(&mut self, other: &i32)
&=
operation. Read moresource§impl BitAndAssign<&i64> for BigEndian<i64>
impl BitAndAssign<&i64> for BigEndian<i64>
source§fn bitand_assign(&mut self, other: &i64)
fn bitand_assign(&mut self, other: &i64)
&=
operation. Read moresource§impl BitAndAssign<&u128> for BigEndian<u128>
impl BitAndAssign<&u128> for BigEndian<u128>
source§fn bitand_assign(&mut self, other: &u128)
fn bitand_assign(&mut self, other: &u128)
&=
operation. Read moresource§impl BitAndAssign<&u16> for BigEndian<u16>
impl BitAndAssign<&u16> for BigEndian<u16>
source§fn bitand_assign(&mut self, other: &u16)
fn bitand_assign(&mut self, other: &u16)
&=
operation. Read moresource§impl BitAndAssign<&u32> for BigEndian<u32>
impl BitAndAssign<&u32> for BigEndian<u32>
source§fn bitand_assign(&mut self, other: &u32)
fn bitand_assign(&mut self, other: &u32)
&=
operation. Read moresource§impl BitAndAssign<&u64> for BigEndian<u64>
impl BitAndAssign<&u64> for BigEndian<u64>
source§fn bitand_assign(&mut self, other: &u64)
fn bitand_assign(&mut self, other: &u64)
&=
operation. Read moresource§impl BitAndAssign<i128> for BigEndian<i128>
impl BitAndAssign<i128> for BigEndian<i128>
source§fn bitand_assign(&mut self, other: i128)
fn bitand_assign(&mut self, other: i128)
&=
operation. Read moresource§impl BitAndAssign<i16> for BigEndian<i16>
impl BitAndAssign<i16> for BigEndian<i16>
source§fn bitand_assign(&mut self, other: i16)
fn bitand_assign(&mut self, other: i16)
&=
operation. Read moresource§impl BitAndAssign<i32> for BigEndian<i32>
impl BitAndAssign<i32> for BigEndian<i32>
source§fn bitand_assign(&mut self, other: i32)
fn bitand_assign(&mut self, other: i32)
&=
operation. Read moresource§impl BitAndAssign<i64> for BigEndian<i64>
impl BitAndAssign<i64> for BigEndian<i64>
source§fn bitand_assign(&mut self, other: i64)
fn bitand_assign(&mut self, other: i64)
&=
operation. Read moresource§impl BitAndAssign<u128> for BigEndian<u128>
impl BitAndAssign<u128> for BigEndian<u128>
source§fn bitand_assign(&mut self, other: u128)
fn bitand_assign(&mut self, other: u128)
&=
operation. Read moresource§impl BitAndAssign<u16> for BigEndian<u16>
impl BitAndAssign<u16> for BigEndian<u16>
source§fn bitand_assign(&mut self, other: u16)
fn bitand_assign(&mut self, other: u16)
&=
operation. Read moresource§impl BitAndAssign<u32> for BigEndian<u32>
impl BitAndAssign<u32> for BigEndian<u32>
source§fn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
&=
operation. Read moresource§impl BitAndAssign<u64> for BigEndian<u64>
impl BitAndAssign<u64> for BigEndian<u64>
source§fn bitand_assign(&mut self, other: u64)
fn bitand_assign(&mut self, other: u64)
&=
operation. Read moresource§impl BitAndAssign for BigEndian<i128>
impl BitAndAssign for BigEndian<i128>
source§impl BitAndAssign for BigEndian<i16>
impl BitAndAssign for BigEndian<i16>
source§impl BitAndAssign for BigEndian<i32>
impl BitAndAssign for BigEndian<i32>
source§impl BitAndAssign for BigEndian<i64>
impl BitAndAssign for BigEndian<i64>
source§impl BitAndAssign for BigEndian<u128>
impl BitAndAssign for BigEndian<u128>
source§impl BitAndAssign for BigEndian<u16>
impl BitAndAssign for BigEndian<u16>
source§impl BitAndAssign for BigEndian<u32>
impl BitAndAssign for BigEndian<u32>
source§impl BitAndAssign for BigEndian<u64>
impl BitAndAssign for BigEndian<u64>
source§impl BitOr for BigEndian<NonZeroI128>
impl BitOr for BigEndian<NonZeroI128>
source§impl BitOr for BigEndian<NonZeroI16>
impl BitOr for BigEndian<NonZeroI16>
source§impl BitOr for BigEndian<NonZeroI32>
impl BitOr for BigEndian<NonZeroI32>
source§impl BitOr for BigEndian<NonZeroI64>
impl BitOr for BigEndian<NonZeroI64>
source§impl BitOr for BigEndian<NonZeroU128>
impl BitOr for BigEndian<NonZeroU128>
source§impl BitOr for BigEndian<NonZeroU16>
impl BitOr for BigEndian<NonZeroU16>
source§impl BitOr for BigEndian<NonZeroU32>
impl BitOr for BigEndian<NonZeroU32>
source§impl BitOr for BigEndian<NonZeroU64>
impl BitOr for BigEndian<NonZeroU64>
source§impl BitOrAssign<&i128> for BigEndian<i128>
impl BitOrAssign<&i128> for BigEndian<i128>
source§fn bitor_assign(&mut self, other: &i128)
fn bitor_assign(&mut self, other: &i128)
|=
operation. Read moresource§impl BitOrAssign<&i16> for BigEndian<i16>
impl BitOrAssign<&i16> for BigEndian<i16>
source§fn bitor_assign(&mut self, other: &i16)
fn bitor_assign(&mut self, other: &i16)
|=
operation. Read moresource§impl BitOrAssign<&i32> for BigEndian<i32>
impl BitOrAssign<&i32> for BigEndian<i32>
source§fn bitor_assign(&mut self, other: &i32)
fn bitor_assign(&mut self, other: &i32)
|=
operation. Read moresource§impl BitOrAssign<&i64> for BigEndian<i64>
impl BitOrAssign<&i64> for BigEndian<i64>
source§fn bitor_assign(&mut self, other: &i64)
fn bitor_assign(&mut self, other: &i64)
|=
operation. Read moresource§impl BitOrAssign<&u128> for BigEndian<u128>
impl BitOrAssign<&u128> for BigEndian<u128>
source§fn bitor_assign(&mut self, other: &u128)
fn bitor_assign(&mut self, other: &u128)
|=
operation. Read moresource§impl BitOrAssign<&u16> for BigEndian<u16>
impl BitOrAssign<&u16> for BigEndian<u16>
source§fn bitor_assign(&mut self, other: &u16)
fn bitor_assign(&mut self, other: &u16)
|=
operation. Read moresource§impl BitOrAssign<&u32> for BigEndian<u32>
impl BitOrAssign<&u32> for BigEndian<u32>
source§fn bitor_assign(&mut self, other: &u32)
fn bitor_assign(&mut self, other: &u32)
|=
operation. Read moresource§impl BitOrAssign<&u64> for BigEndian<u64>
impl BitOrAssign<&u64> for BigEndian<u64>
source§fn bitor_assign(&mut self, other: &u64)
fn bitor_assign(&mut self, other: &u64)
|=
operation. Read moresource§impl BitOrAssign<NonZero<i128>> for BigEndian<NonZeroI128>
impl BitOrAssign<NonZero<i128>> for BigEndian<NonZeroI128>
source§fn bitor_assign(&mut self, other: NonZeroI128)
fn bitor_assign(&mut self, other: NonZeroI128)
|=
operation. Read moresource§impl BitOrAssign<NonZero<i16>> for BigEndian<NonZeroI16>
impl BitOrAssign<NonZero<i16>> for BigEndian<NonZeroI16>
source§fn bitor_assign(&mut self, other: NonZeroI16)
fn bitor_assign(&mut self, other: NonZeroI16)
|=
operation. Read moresource§impl BitOrAssign<NonZero<i32>> for BigEndian<NonZeroI32>
impl BitOrAssign<NonZero<i32>> for BigEndian<NonZeroI32>
source§fn bitor_assign(&mut self, other: NonZeroI32)
fn bitor_assign(&mut self, other: NonZeroI32)
|=
operation. Read moresource§impl BitOrAssign<NonZero<i64>> for BigEndian<NonZeroI64>
impl BitOrAssign<NonZero<i64>> for BigEndian<NonZeroI64>
source§fn bitor_assign(&mut self, other: NonZeroI64)
fn bitor_assign(&mut self, other: NonZeroI64)
|=
operation. Read moresource§impl BitOrAssign<NonZero<u128>> for BigEndian<NonZeroU128>
impl BitOrAssign<NonZero<u128>> for BigEndian<NonZeroU128>
source§fn bitor_assign(&mut self, other: NonZeroU128)
fn bitor_assign(&mut self, other: NonZeroU128)
|=
operation. Read moresource§impl BitOrAssign<NonZero<u16>> for BigEndian<NonZeroU16>
impl BitOrAssign<NonZero<u16>> for BigEndian<NonZeroU16>
source§fn bitor_assign(&mut self, other: NonZeroU16)
fn bitor_assign(&mut self, other: NonZeroU16)
|=
operation. Read moresource§impl BitOrAssign<NonZero<u32>> for BigEndian<NonZeroU32>
impl BitOrAssign<NonZero<u32>> for BigEndian<NonZeroU32>
source§fn bitor_assign(&mut self, other: NonZeroU32)
fn bitor_assign(&mut self, other: NonZeroU32)
|=
operation. Read moresource§impl BitOrAssign<NonZero<u64>> for BigEndian<NonZeroU64>
impl BitOrAssign<NonZero<u64>> for BigEndian<NonZeroU64>
source§fn bitor_assign(&mut self, other: NonZeroU64)
fn bitor_assign(&mut self, other: NonZeroU64)
|=
operation. Read moresource§impl BitOrAssign<i128> for BigEndian<i128>
impl BitOrAssign<i128> for BigEndian<i128>
source§fn bitor_assign(&mut self, other: i128)
fn bitor_assign(&mut self, other: i128)
|=
operation. Read moresource§impl BitOrAssign<i16> for BigEndian<i16>
impl BitOrAssign<i16> for BigEndian<i16>
source§fn bitor_assign(&mut self, other: i16)
fn bitor_assign(&mut self, other: i16)
|=
operation. Read moresource§impl BitOrAssign<i32> for BigEndian<i32>
impl BitOrAssign<i32> for BigEndian<i32>
source§fn bitor_assign(&mut self, other: i32)
fn bitor_assign(&mut self, other: i32)
|=
operation. Read moresource§impl BitOrAssign<i64> for BigEndian<i64>
impl BitOrAssign<i64> for BigEndian<i64>
source§fn bitor_assign(&mut self, other: i64)
fn bitor_assign(&mut self, other: i64)
|=
operation. Read moresource§impl BitOrAssign<u128> for BigEndian<u128>
impl BitOrAssign<u128> for BigEndian<u128>
source§fn bitor_assign(&mut self, other: u128)
fn bitor_assign(&mut self, other: u128)
|=
operation. Read moresource§impl BitOrAssign<u16> for BigEndian<u16>
impl BitOrAssign<u16> for BigEndian<u16>
source§fn bitor_assign(&mut self, other: u16)
fn bitor_assign(&mut self, other: u16)
|=
operation. Read moresource§impl BitOrAssign<u32> for BigEndian<u32>
impl BitOrAssign<u32> for BigEndian<u32>
source§fn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
|=
operation. Read moresource§impl BitOrAssign<u64> for BigEndian<u64>
impl BitOrAssign<u64> for BigEndian<u64>
source§fn bitor_assign(&mut self, other: u64)
fn bitor_assign(&mut self, other: u64)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroI128>
impl BitOrAssign for BigEndian<NonZeroI128>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroI128>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroI128>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroI16>
impl BitOrAssign for BigEndian<NonZeroI16>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroI16>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroI16>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroI32>
impl BitOrAssign for BigEndian<NonZeroI32>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroI32>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroI32>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroI64>
impl BitOrAssign for BigEndian<NonZeroI64>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroI64>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroI64>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroU128>
impl BitOrAssign for BigEndian<NonZeroU128>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroU128>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroU128>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroU16>
impl BitOrAssign for BigEndian<NonZeroU16>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroU16>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroU16>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroU32>
impl BitOrAssign for BigEndian<NonZeroU32>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroU32>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroU32>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<NonZeroU64>
impl BitOrAssign for BigEndian<NonZeroU64>
source§fn bitor_assign(&mut self, other: BigEndian<NonZeroU64>)
fn bitor_assign(&mut self, other: BigEndian<NonZeroU64>)
|=
operation. Read moresource§impl BitOrAssign for BigEndian<i128>
impl BitOrAssign for BigEndian<i128>
source§impl BitOrAssign for BigEndian<i16>
impl BitOrAssign for BigEndian<i16>
source§impl BitOrAssign for BigEndian<i32>
impl BitOrAssign for BigEndian<i32>
source§impl BitOrAssign for BigEndian<i64>
impl BitOrAssign for BigEndian<i64>
source§impl BitOrAssign for BigEndian<u128>
impl BitOrAssign for BigEndian<u128>
source§impl BitOrAssign for BigEndian<u16>
impl BitOrAssign for BigEndian<u16>
source§impl BitOrAssign for BigEndian<u32>
impl BitOrAssign for BigEndian<u32>
source§impl BitOrAssign for BigEndian<u64>
impl BitOrAssign for BigEndian<u64>
source§impl BitXorAssign<&i128> for BigEndian<i128>
impl BitXorAssign<&i128> for BigEndian<i128>
source§fn bitxor_assign(&mut self, other: &i128)
fn bitxor_assign(&mut self, other: &i128)
^=
operation. Read moresource§impl BitXorAssign<&i16> for BigEndian<i16>
impl BitXorAssign<&i16> for BigEndian<i16>
source§fn bitxor_assign(&mut self, other: &i16)
fn bitxor_assign(&mut self, other: &i16)
^=
operation. Read moresource§impl BitXorAssign<&i32> for BigEndian<i32>
impl BitXorAssign<&i32> for BigEndian<i32>
source§fn bitxor_assign(&mut self, other: &i32)
fn bitxor_assign(&mut self, other: &i32)
^=
operation. Read moresource§impl BitXorAssign<&i64> for BigEndian<i64>
impl BitXorAssign<&i64> for BigEndian<i64>
source§fn bitxor_assign(&mut self, other: &i64)
fn bitxor_assign(&mut self, other: &i64)
^=
operation. Read moresource§impl BitXorAssign<&u128> for BigEndian<u128>
impl BitXorAssign<&u128> for BigEndian<u128>
source§fn bitxor_assign(&mut self, other: &u128)
fn bitxor_assign(&mut self, other: &u128)
^=
operation. Read moresource§impl BitXorAssign<&u16> for BigEndian<u16>
impl BitXorAssign<&u16> for BigEndian<u16>
source§fn bitxor_assign(&mut self, other: &u16)
fn bitxor_assign(&mut self, other: &u16)
^=
operation. Read moresource§impl BitXorAssign<&u32> for BigEndian<u32>
impl BitXorAssign<&u32> for BigEndian<u32>
source§fn bitxor_assign(&mut self, other: &u32)
fn bitxor_assign(&mut self, other: &u32)
^=
operation. Read moresource§impl BitXorAssign<&u64> for BigEndian<u64>
impl BitXorAssign<&u64> for BigEndian<u64>
source§fn bitxor_assign(&mut self, other: &u64)
fn bitxor_assign(&mut self, other: &u64)
^=
operation. Read moresource§impl BitXorAssign<i128> for BigEndian<i128>
impl BitXorAssign<i128> for BigEndian<i128>
source§fn bitxor_assign(&mut self, other: i128)
fn bitxor_assign(&mut self, other: i128)
^=
operation. Read moresource§impl BitXorAssign<i16> for BigEndian<i16>
impl BitXorAssign<i16> for BigEndian<i16>
source§fn bitxor_assign(&mut self, other: i16)
fn bitxor_assign(&mut self, other: i16)
^=
operation. Read moresource§impl BitXorAssign<i32> for BigEndian<i32>
impl BitXorAssign<i32> for BigEndian<i32>
source§fn bitxor_assign(&mut self, other: i32)
fn bitxor_assign(&mut self, other: i32)
^=
operation. Read moresource§impl BitXorAssign<i64> for BigEndian<i64>
impl BitXorAssign<i64> for BigEndian<i64>
source§fn bitxor_assign(&mut self, other: i64)
fn bitxor_assign(&mut self, other: i64)
^=
operation. Read moresource§impl BitXorAssign<u128> for BigEndian<u128>
impl BitXorAssign<u128> for BigEndian<u128>
source§fn bitxor_assign(&mut self, other: u128)
fn bitxor_assign(&mut self, other: u128)
^=
operation. Read moresource§impl BitXorAssign<u16> for BigEndian<u16>
impl BitXorAssign<u16> for BigEndian<u16>
source§fn bitxor_assign(&mut self, other: u16)
fn bitxor_assign(&mut self, other: u16)
^=
operation. Read moresource§impl BitXorAssign<u32> for BigEndian<u32>
impl BitXorAssign<u32> for BigEndian<u32>
source§fn bitxor_assign(&mut self, other: u32)
fn bitxor_assign(&mut self, other: u32)
^=
operation. Read moresource§impl BitXorAssign<u64> for BigEndian<u64>
impl BitXorAssign<u64> for BigEndian<u64>
source§fn bitxor_assign(&mut self, other: u64)
fn bitxor_assign(&mut self, other: u64)
^=
operation. Read moresource§impl BitXorAssign for BigEndian<i128>
impl BitXorAssign for BigEndian<i128>
source§impl BitXorAssign for BigEndian<i16>
impl BitXorAssign for BigEndian<i16>
source§impl BitXorAssign for BigEndian<i32>
impl BitXorAssign for BigEndian<i32>
source§impl BitXorAssign for BigEndian<i64>
impl BitXorAssign for BigEndian<i64>
source§impl BitXorAssign for BigEndian<u128>
impl BitXorAssign for BigEndian<u128>
source§impl BitXorAssign for BigEndian<u16>
impl BitXorAssign for BigEndian<u16>
source§impl BitXorAssign for BigEndian<u32>
impl BitXorAssign for BigEndian<u32>
source§impl BitXorAssign for BigEndian<u64>
impl BitXorAssign for BigEndian<u64>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI16>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI32>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicI64>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU16>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU32>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<AtomicU64>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI128>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI128>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI16>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI32>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroI64>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU128>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU128>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU16>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU32>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<NonZeroU64>
§type Error = NonZeroCheckError
type Error = NonZeroCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<char>
impl<C: ?Sized> CheckBytes<C> for BigEndian<char>
§type Error = CharCheckError
type Error = CharCheckError
source§unsafe fn check_bytes<'a>(
value: *const Self,
context: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, context: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<f32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<f32>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<f64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<f64>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<i128>
impl<C: ?Sized> CheckBytes<C> for BigEndian<i128>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<i16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<i16>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<i32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<i32>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<i64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<i64>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<u128>
impl<C: ?Sized> CheckBytes<C> for BigEndian<u128>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<u16>
impl<C: ?Sized> CheckBytes<C> for BigEndian<u16>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<u32>
impl<C: ?Sized> CheckBytes<C> for BigEndian<u32>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl<C: ?Sized> CheckBytes<C> for BigEndian<u64>
impl<C: ?Sized> CheckBytes<C> for BigEndian<u64>
§type Error = Infallible
type Error = Infallible
source§unsafe fn check_bytes<'a>(
value: *const Self,
_: &mut C,
) -> Result<&'a Self, Self::Error>
unsafe fn check_bytes<'a>( value: *const Self, _: &mut C, ) -> Result<&'a Self, Self::Error>
source§impl Debug for BigEndian<NonZeroI128>
impl Debug for BigEndian<NonZeroI128>
source§impl Debug for BigEndian<NonZeroI16>
impl Debug for BigEndian<NonZeroI16>
source§impl Debug for BigEndian<NonZeroI32>
impl Debug for BigEndian<NonZeroI32>
source§impl Debug for BigEndian<NonZeroI64>
impl Debug for BigEndian<NonZeroI64>
source§impl Debug for BigEndian<NonZeroU128>
impl Debug for BigEndian<NonZeroU128>
source§impl Debug for BigEndian<NonZeroU16>
impl Debug for BigEndian<NonZeroU16>
source§impl Debug for BigEndian<NonZeroU32>
impl Debug for BigEndian<NonZeroU32>
source§impl Debug for BigEndian<NonZeroU64>
impl Debug for BigEndian<NonZeroU64>
source§impl Display for BigEndian<NonZeroI128>
impl Display for BigEndian<NonZeroI128>
source§impl Display for BigEndian<NonZeroI16>
impl Display for BigEndian<NonZeroI16>
source§impl Display for BigEndian<NonZeroI32>
impl Display for BigEndian<NonZeroI32>
source§impl Display for BigEndian<NonZeroI64>
impl Display for BigEndian<NonZeroI64>
source§impl Display for BigEndian<NonZeroU128>
impl Display for BigEndian<NonZeroU128>
source§impl Display for BigEndian<NonZeroU16>
impl Display for BigEndian<NonZeroU16>
source§impl Display for BigEndian<NonZeroU32>
impl Display for BigEndian<NonZeroU32>
source§impl Display for BigEndian<NonZeroU64>
impl Display for BigEndian<NonZeroU64>
source§impl DivAssign<&f32> for BigEndian<f32>
impl DivAssign<&f32> for BigEndian<f32>
source§fn div_assign(&mut self, other: &f32)
fn div_assign(&mut self, other: &f32)
/=
operation. Read moresource§impl DivAssign<&f64> for BigEndian<f64>
impl DivAssign<&f64> for BigEndian<f64>
source§fn div_assign(&mut self, other: &f64)
fn div_assign(&mut self, other: &f64)
/=
operation. Read moresource§impl DivAssign<&i128> for BigEndian<i128>
impl DivAssign<&i128> for BigEndian<i128>
source§fn div_assign(&mut self, other: &i128)
fn div_assign(&mut self, other: &i128)
/=
operation. Read moresource§impl DivAssign<&i16> for BigEndian<i16>
impl DivAssign<&i16> for BigEndian<i16>
source§fn div_assign(&mut self, other: &i16)
fn div_assign(&mut self, other: &i16)
/=
operation. Read moresource§impl DivAssign<&i32> for BigEndian<i32>
impl DivAssign<&i32> for BigEndian<i32>
source§fn div_assign(&mut self, other: &i32)
fn div_assign(&mut self, other: &i32)
/=
operation. Read moresource§impl DivAssign<&i64> for BigEndian<i64>
impl DivAssign<&i64> for BigEndian<i64>
source§fn div_assign(&mut self, other: &i64)
fn div_assign(&mut self, other: &i64)
/=
operation. Read moresource§impl DivAssign<&u128> for BigEndian<u128>
impl DivAssign<&u128> for BigEndian<u128>
source§fn div_assign(&mut self, other: &u128)
fn div_assign(&mut self, other: &u128)
/=
operation. Read moresource§impl DivAssign<&u16> for BigEndian<u16>
impl DivAssign<&u16> for BigEndian<u16>
source§fn div_assign(&mut self, other: &u16)
fn div_assign(&mut self, other: &u16)
/=
operation. Read moresource§impl DivAssign<&u32> for BigEndian<u32>
impl DivAssign<&u32> for BigEndian<u32>
source§fn div_assign(&mut self, other: &u32)
fn div_assign(&mut self, other: &u32)
/=
operation. Read moresource§impl DivAssign<&u64> for BigEndian<u64>
impl DivAssign<&u64> for BigEndian<u64>
source§fn div_assign(&mut self, other: &u64)
fn div_assign(&mut self, other: &u64)
/=
operation. Read moresource§impl DivAssign<f32> for BigEndian<f32>
impl DivAssign<f32> for BigEndian<f32>
source§fn div_assign(&mut self, other: f32)
fn div_assign(&mut self, other: f32)
/=
operation. Read moresource§impl DivAssign<f64> for BigEndian<f64>
impl DivAssign<f64> for BigEndian<f64>
source§fn div_assign(&mut self, other: f64)
fn div_assign(&mut self, other: f64)
/=
operation. Read moresource§impl DivAssign<i128> for BigEndian<i128>
impl DivAssign<i128> for BigEndian<i128>
source§fn div_assign(&mut self, other: i128)
fn div_assign(&mut self, other: i128)
/=
operation. Read moresource§impl DivAssign<i16> for BigEndian<i16>
impl DivAssign<i16> for BigEndian<i16>
source§fn div_assign(&mut self, other: i16)
fn div_assign(&mut self, other: i16)
/=
operation. Read moresource§impl DivAssign<i32> for BigEndian<i32>
impl DivAssign<i32> for BigEndian<i32>
source§fn div_assign(&mut self, other: i32)
fn div_assign(&mut self, other: i32)
/=
operation. Read moresource§impl DivAssign<i64> for BigEndian<i64>
impl DivAssign<i64> for BigEndian<i64>
source§fn div_assign(&mut self, other: i64)
fn div_assign(&mut self, other: i64)
/=
operation. Read moresource§impl DivAssign<u128> for BigEndian<u128>
impl DivAssign<u128> for BigEndian<u128>
source§fn div_assign(&mut self, other: u128)
fn div_assign(&mut self, other: u128)
/=
operation. Read moresource§impl DivAssign<u16> for BigEndian<u16>
impl DivAssign<u16> for BigEndian<u16>
source§fn div_assign(&mut self, other: u16)
fn div_assign(&mut self, other: u16)
/=
operation. Read moresource§impl DivAssign<u32> for BigEndian<u32>
impl DivAssign<u32> for BigEndian<u32>
source§fn div_assign(&mut self, other: u32)
fn div_assign(&mut self, other: u32)
/=
operation. Read moresource§impl DivAssign<u64> for BigEndian<u64>
impl DivAssign<u64> for BigEndian<u64>
source§fn div_assign(&mut self, other: u64)
fn div_assign(&mut self, other: u64)
/=
operation. Read moresource§impl<'a> From<&'a BigEndian<NonZero<i128>>> for NonZeroI128
impl<'a> From<&'a BigEndian<NonZero<i128>>> for NonZeroI128
source§fn from(value: &'a BigEndian<NonZeroI128>) -> Self
fn from(value: &'a BigEndian<NonZeroI128>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<i16>>> for NonZeroI16
impl<'a> From<&'a BigEndian<NonZero<i16>>> for NonZeroI16
source§fn from(value: &'a BigEndian<NonZeroI16>) -> Self
fn from(value: &'a BigEndian<NonZeroI16>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<i32>>> for NonZeroI32
impl<'a> From<&'a BigEndian<NonZero<i32>>> for NonZeroI32
source§fn from(value: &'a BigEndian<NonZeroI32>) -> Self
fn from(value: &'a BigEndian<NonZeroI32>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<i64>>> for NonZeroI64
impl<'a> From<&'a BigEndian<NonZero<i64>>> for NonZeroI64
source§fn from(value: &'a BigEndian<NonZeroI64>) -> Self
fn from(value: &'a BigEndian<NonZeroI64>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<u128>>> for NonZeroU128
impl<'a> From<&'a BigEndian<NonZero<u128>>> for NonZeroU128
source§fn from(value: &'a BigEndian<NonZeroU128>) -> Self
fn from(value: &'a BigEndian<NonZeroU128>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<u16>>> for NonZeroU16
impl<'a> From<&'a BigEndian<NonZero<u16>>> for NonZeroU16
source§fn from(value: &'a BigEndian<NonZeroU16>) -> Self
fn from(value: &'a BigEndian<NonZeroU16>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<u32>>> for NonZeroU32
impl<'a> From<&'a BigEndian<NonZero<u32>>> for NonZeroU32
source§fn from(value: &'a BigEndian<NonZeroU32>) -> Self
fn from(value: &'a BigEndian<NonZeroU32>) -> Self
source§impl<'a> From<&'a BigEndian<NonZero<u64>>> for NonZeroU64
impl<'a> From<&'a BigEndian<NonZero<u64>>> for NonZeroU64
source§fn from(value: &'a BigEndian<NonZeroU64>) -> Self
fn from(value: &'a BigEndian<NonZeroU64>) -> Self
source§impl<'a> From<&'a NonZero<i128>> for BigEndian<NonZeroI128>
impl<'a> From<&'a NonZero<i128>> for BigEndian<NonZeroI128>
source§fn from(value: &'a NonZeroI128) -> Self
fn from(value: &'a NonZeroI128) -> Self
source§impl<'a> From<&'a NonZero<i16>> for BigEndian<NonZeroI16>
impl<'a> From<&'a NonZero<i16>> for BigEndian<NonZeroI16>
source§fn from(value: &'a NonZeroI16) -> Self
fn from(value: &'a NonZeroI16) -> Self
source§impl<'a> From<&'a NonZero<i32>> for BigEndian<NonZeroI32>
impl<'a> From<&'a NonZero<i32>> for BigEndian<NonZeroI32>
source§fn from(value: &'a NonZeroI32) -> Self
fn from(value: &'a NonZeroI32) -> Self
source§impl<'a> From<&'a NonZero<i64>> for BigEndian<NonZeroI64>
impl<'a> From<&'a NonZero<i64>> for BigEndian<NonZeroI64>
source§fn from(value: &'a NonZeroI64) -> Self
fn from(value: &'a NonZeroI64) -> Self
source§impl<'a> From<&'a NonZero<u128>> for BigEndian<NonZeroU128>
impl<'a> From<&'a NonZero<u128>> for BigEndian<NonZeroU128>
source§fn from(value: &'a NonZeroU128) -> Self
fn from(value: &'a NonZeroU128) -> Self
source§impl<'a> From<&'a NonZero<u16>> for BigEndian<NonZeroU16>
impl<'a> From<&'a NonZero<u16>> for BigEndian<NonZeroU16>
source§fn from(value: &'a NonZeroU16) -> Self
fn from(value: &'a NonZeroU16) -> Self
source§impl<'a> From<&'a NonZero<u32>> for BigEndian<NonZeroU32>
impl<'a> From<&'a NonZero<u32>> for BigEndian<NonZeroU32>
source§fn from(value: &'a NonZeroU32) -> Self
fn from(value: &'a NonZeroU32) -> Self
source§impl<'a> From<&'a NonZero<u64>> for BigEndian<NonZeroU64>
impl<'a> From<&'a NonZero<u64>> for BigEndian<NonZeroU64>
source§fn from(value: &'a NonZeroU64) -> Self
fn from(value: &'a NonZeroU64) -> Self
source§impl From<BigEndian<NonZero<i128>>> for NonZeroI128
impl From<BigEndian<NonZero<i128>>> for NonZeroI128
source§fn from(value: BigEndian<NonZeroI128>) -> Self
fn from(value: BigEndian<NonZeroI128>) -> Self
source§impl From<BigEndian<NonZero<i16>>> for NonZeroI16
impl From<BigEndian<NonZero<i16>>> for NonZeroI16
source§fn from(value: BigEndian<NonZeroI16>) -> Self
fn from(value: BigEndian<NonZeroI16>) -> Self
source§impl From<BigEndian<NonZero<i32>>> for NonZeroI32
impl From<BigEndian<NonZero<i32>>> for NonZeroI32
source§fn from(value: BigEndian<NonZeroI32>) -> Self
fn from(value: BigEndian<NonZeroI32>) -> Self
source§impl From<BigEndian<NonZero<i64>>> for NonZeroI64
impl From<BigEndian<NonZero<i64>>> for NonZeroI64
source§fn from(value: BigEndian<NonZeroI64>) -> Self
fn from(value: BigEndian<NonZeroI64>) -> Self
source§impl From<BigEndian<NonZero<u128>>> for NonZeroU128
impl From<BigEndian<NonZero<u128>>> for NonZeroU128
source§fn from(value: BigEndian<NonZeroU128>) -> Self
fn from(value: BigEndian<NonZeroU128>) -> Self
source§impl From<BigEndian<NonZero<u16>>> for NonZeroU16
impl From<BigEndian<NonZero<u16>>> for NonZeroU16
source§fn from(value: BigEndian<NonZeroU16>) -> Self
fn from(value: BigEndian<NonZeroU16>) -> Self
source§impl From<BigEndian<NonZero<u32>>> for NonZeroU32
impl From<BigEndian<NonZero<u32>>> for NonZeroU32
source§fn from(value: BigEndian<NonZeroU32>) -> Self
fn from(value: BigEndian<NonZeroU32>) -> Self
source§impl From<BigEndian<NonZero<u64>>> for NonZeroU64
impl From<BigEndian<NonZero<u64>>> for NonZeroU64
source§fn from(value: BigEndian<NonZeroU64>) -> Self
fn from(value: BigEndian<NonZeroU64>) -> Self
source§impl From<NonZero<i128>> for BigEndian<NonZeroI128>
impl From<NonZero<i128>> for BigEndian<NonZeroI128>
source§fn from(value: NonZeroI128) -> Self
fn from(value: NonZeroI128) -> Self
source§impl From<NonZero<i16>> for BigEndian<NonZeroI16>
impl From<NonZero<i16>> for BigEndian<NonZeroI16>
source§fn from(value: NonZeroI16) -> Self
fn from(value: NonZeroI16) -> Self
source§impl From<NonZero<i32>> for BigEndian<NonZeroI32>
impl From<NonZero<i32>> for BigEndian<NonZeroI32>
source§fn from(value: NonZeroI32) -> Self
fn from(value: NonZeroI32) -> Self
source§impl From<NonZero<i64>> for BigEndian<NonZeroI64>
impl From<NonZero<i64>> for BigEndian<NonZeroI64>
source§fn from(value: NonZeroI64) -> Self
fn from(value: NonZeroI64) -> Self
source§impl From<NonZero<u128>> for BigEndian<NonZeroU128>
impl From<NonZero<u128>> for BigEndian<NonZeroU128>
source§fn from(value: NonZeroU128) -> Self
fn from(value: NonZeroU128) -> Self
source§impl From<NonZero<u16>> for BigEndian<NonZeroU16>
impl From<NonZero<u16>> for BigEndian<NonZeroU16>
source§fn from(value: NonZeroU16) -> Self
fn from(value: NonZeroU16) -> Self
source§impl From<NonZero<u32>> for BigEndian<NonZeroU32>
impl From<NonZero<u32>> for BigEndian<NonZeroU32>
source§fn from(value: NonZeroU32) -> Self
fn from(value: NonZeroU32) -> Self
source§impl From<NonZero<u64>> for BigEndian<NonZeroU64>
impl From<NonZero<u64>> for BigEndian<NonZeroU64>
source§fn from(value: NonZeroU64) -> Self
fn from(value: NonZeroU64) -> Self
source§impl Hash for BigEndian<NonZeroI128>
impl Hash for BigEndian<NonZeroI128>
source§impl Hash for BigEndian<NonZeroI16>
impl Hash for BigEndian<NonZeroI16>
source§impl Hash for BigEndian<NonZeroI32>
impl Hash for BigEndian<NonZeroI32>
source§impl Hash for BigEndian<NonZeroI64>
impl Hash for BigEndian<NonZeroI64>
source§impl Hash for BigEndian<NonZeroU128>
impl Hash for BigEndian<NonZeroU128>
source§impl Hash for BigEndian<NonZeroU16>
impl Hash for BigEndian<NonZeroU16>
source§impl Hash for BigEndian<NonZeroU32>
impl Hash for BigEndian<NonZeroU32>
source§impl Hash for BigEndian<NonZeroU64>
impl Hash for BigEndian<NonZeroU64>
source§impl LowerHex for BigEndian<NonZeroI128>
impl LowerHex for BigEndian<NonZeroI128>
source§impl LowerHex for BigEndian<NonZeroI16>
impl LowerHex for BigEndian<NonZeroI16>
source§impl LowerHex for BigEndian<NonZeroI32>
impl LowerHex for BigEndian<NonZeroI32>
source§impl LowerHex for BigEndian<NonZeroI64>
impl LowerHex for BigEndian<NonZeroI64>
source§impl LowerHex for BigEndian<NonZeroU128>
impl LowerHex for BigEndian<NonZeroU128>
source§impl LowerHex for BigEndian<NonZeroU16>
impl LowerHex for BigEndian<NonZeroU16>
source§impl LowerHex for BigEndian<NonZeroU32>
impl LowerHex for BigEndian<NonZeroU32>
source§impl LowerHex for BigEndian<NonZeroU64>
impl LowerHex for BigEndian<NonZeroU64>
source§impl MulAssign<&f32> for BigEndian<f32>
impl MulAssign<&f32> for BigEndian<f32>
source§fn mul_assign(&mut self, other: &f32)
fn mul_assign(&mut self, other: &f32)
*=
operation. Read moresource§impl MulAssign<&f64> for BigEndian<f64>
impl MulAssign<&f64> for BigEndian<f64>
source§fn mul_assign(&mut self, other: &f64)
fn mul_assign(&mut self, other: &f64)
*=
operation. Read moresource§impl MulAssign<&i128> for BigEndian<i128>
impl MulAssign<&i128> for BigEndian<i128>
source§fn mul_assign(&mut self, other: &i128)
fn mul_assign(&mut self, other: &i128)
*=
operation. Read moresource§impl MulAssign<&i16> for BigEndian<i16>
impl MulAssign<&i16> for BigEndian<i16>
source§fn mul_assign(&mut self, other: &i16)
fn mul_assign(&mut self, other: &i16)
*=
operation. Read moresource§impl MulAssign<&i32> for BigEndian<i32>
impl MulAssign<&i32> for BigEndian<i32>
source§fn mul_assign(&mut self, other: &i32)
fn mul_assign(&mut self, other: &i32)
*=
operation. Read moresource§impl MulAssign<&i64> for BigEndian<i64>
impl MulAssign<&i64> for BigEndian<i64>
source§fn mul_assign(&mut self, other: &i64)
fn mul_assign(&mut self, other: &i64)
*=
operation. Read moresource§impl MulAssign<&u128> for BigEndian<u128>
impl MulAssign<&u128> for BigEndian<u128>
source§fn mul_assign(&mut self, other: &u128)
fn mul_assign(&mut self, other: &u128)
*=
operation. Read moresource§impl MulAssign<&u16> for BigEndian<u16>
impl MulAssign<&u16> for BigEndian<u16>
source§fn mul_assign(&mut self, other: &u16)
fn mul_assign(&mut self, other: &u16)
*=
operation. Read moresource§impl MulAssign<&u32> for BigEndian<u32>
impl MulAssign<&u32> for BigEndian<u32>
source§fn mul_assign(&mut self, other: &u32)
fn mul_assign(&mut self, other: &u32)
*=
operation. Read moresource§impl MulAssign<&u64> for BigEndian<u64>
impl MulAssign<&u64> for BigEndian<u64>
source§fn mul_assign(&mut self, other: &u64)
fn mul_assign(&mut self, other: &u64)
*=
operation. Read moresource§impl MulAssign<f32> for BigEndian<f32>
impl MulAssign<f32> for BigEndian<f32>
source§fn mul_assign(&mut self, other: f32)
fn mul_assign(&mut self, other: f32)
*=
operation. Read moresource§impl MulAssign<f64> for BigEndian<f64>
impl MulAssign<f64> for BigEndian<f64>
source§fn mul_assign(&mut self, other: f64)
fn mul_assign(&mut self, other: f64)
*=
operation. Read moresource§impl MulAssign<i128> for BigEndian<i128>
impl MulAssign<i128> for BigEndian<i128>
source§fn mul_assign(&mut self, other: i128)
fn mul_assign(&mut self, other: i128)
*=
operation. Read moresource§impl MulAssign<i16> for BigEndian<i16>
impl MulAssign<i16> for BigEndian<i16>
source§fn mul_assign(&mut self, other: i16)
fn mul_assign(&mut self, other: i16)
*=
operation. Read moresource§impl MulAssign<i32> for BigEndian<i32>
impl MulAssign<i32> for BigEndian<i32>
source§fn mul_assign(&mut self, other: i32)
fn mul_assign(&mut self, other: i32)
*=
operation. Read moresource§impl MulAssign<i64> for BigEndian<i64>
impl MulAssign<i64> for BigEndian<i64>
source§fn mul_assign(&mut self, other: i64)
fn mul_assign(&mut self, other: i64)
*=
operation. Read moresource§impl MulAssign<u128> for BigEndian<u128>
impl MulAssign<u128> for BigEndian<u128>
source§fn mul_assign(&mut self, other: u128)
fn mul_assign(&mut self, other: u128)
*=
operation. Read moresource§impl MulAssign<u16> for BigEndian<u16>
impl MulAssign<u16> for BigEndian<u16>
source§fn mul_assign(&mut self, other: u16)
fn mul_assign(&mut self, other: u16)
*=
operation. Read moresource§impl MulAssign<u32> for BigEndian<u32>
impl MulAssign<u32> for BigEndian<u32>
source§fn mul_assign(&mut self, other: u32)
fn mul_assign(&mut self, other: u32)
*=
operation. Read moresource§impl MulAssign<u64> for BigEndian<u64>
impl MulAssign<u64> for BigEndian<u64>
source§fn mul_assign(&mut self, other: u64)
fn mul_assign(&mut self, other: u64)
*=
operation. Read moresource§impl Octal for BigEndian<NonZeroI128>
impl Octal for BigEndian<NonZeroI128>
source§impl Octal for BigEndian<NonZeroI16>
impl Octal for BigEndian<NonZeroI16>
source§impl Octal for BigEndian<NonZeroI32>
impl Octal for BigEndian<NonZeroI32>
source§impl Octal for BigEndian<NonZeroI64>
impl Octal for BigEndian<NonZeroI64>
source§impl Octal for BigEndian<NonZeroU128>
impl Octal for BigEndian<NonZeroU128>
source§impl Octal for BigEndian<NonZeroU16>
impl Octal for BigEndian<NonZeroU16>
source§impl Octal for BigEndian<NonZeroU32>
impl Octal for BigEndian<NonZeroU32>
source§impl Octal for BigEndian<NonZeroU64>
impl Octal for BigEndian<NonZeroU64>
source§impl Ord for BigEndian<NonZeroI128>
impl Ord for BigEndian<NonZeroI128>
source§impl Ord for BigEndian<NonZeroI16>
impl Ord for BigEndian<NonZeroI16>
source§impl Ord for BigEndian<NonZeroI32>
impl Ord for BigEndian<NonZeroI32>
source§impl Ord for BigEndian<NonZeroI64>
impl Ord for BigEndian<NonZeroI64>
source§impl Ord for BigEndian<NonZeroU128>
impl Ord for BigEndian<NonZeroU128>
source§impl Ord for BigEndian<NonZeroU16>
impl Ord for BigEndian<NonZeroU16>
source§impl Ord for BigEndian<NonZeroU32>
impl Ord for BigEndian<NonZeroU32>
source§impl Ord for BigEndian<NonZeroU64>
impl Ord for BigEndian<NonZeroU64>
source§impl Ord for BigEndian<char>
impl Ord for BigEndian<char>
source§impl Ord for BigEndian<i128>
impl Ord for BigEndian<i128>
source§impl Ord for BigEndian<i16>
impl Ord for BigEndian<i16>
source§impl Ord for BigEndian<i32>
impl Ord for BigEndian<i32>
source§impl Ord for BigEndian<i64>
impl Ord for BigEndian<i64>
source§impl Ord for BigEndian<u128>
impl Ord for BigEndian<u128>
source§impl Ord for BigEndian<u16>
impl Ord for BigEndian<u16>
source§impl Ord for BigEndian<u32>
impl Ord for BigEndian<u32>
source§impl Ord for BigEndian<u64>
impl Ord for BigEndian<u64>
source§impl PartialEq<BigEndian<NonZero<i128>>> for NonZeroI128
impl PartialEq<BigEndian<NonZero<i128>>> for NonZeroI128
source§impl PartialEq<BigEndian<NonZero<i16>>> for NonZeroI16
impl PartialEq<BigEndian<NonZero<i16>>> for NonZeroI16
source§impl PartialEq<BigEndian<NonZero<i32>>> for NonZeroI32
impl PartialEq<BigEndian<NonZero<i32>>> for NonZeroI32
source§impl PartialEq<BigEndian<NonZero<i64>>> for NonZeroI64
impl PartialEq<BigEndian<NonZero<i64>>> for NonZeroI64
source§impl PartialEq<BigEndian<NonZero<u128>>> for NonZeroU128
impl PartialEq<BigEndian<NonZero<u128>>> for NonZeroU128
source§impl PartialEq<BigEndian<NonZero<u16>>> for NonZeroU16
impl PartialEq<BigEndian<NonZero<u16>>> for NonZeroU16
source§impl PartialEq<BigEndian<NonZero<u32>>> for NonZeroU32
impl PartialEq<BigEndian<NonZero<u32>>> for NonZeroU32
source§impl PartialEq<BigEndian<NonZero<u64>>> for NonZeroU64
impl PartialEq<BigEndian<NonZero<u64>>> for NonZeroU64
source§impl PartialEq<BigEndian<char>> for char
impl PartialEq<BigEndian<char>> for char
source§impl PartialEq<BigEndian<f32>> for f32
impl PartialEq<BigEndian<f32>> for f32
source§impl PartialEq<BigEndian<f64>> for f64
impl PartialEq<BigEndian<f64>> for f64
source§impl PartialEq<BigEndian<i128>> for i128
impl PartialEq<BigEndian<i128>> for i128
source§impl PartialEq<BigEndian<i16>> for i16
impl PartialEq<BigEndian<i16>> for i16
source§impl PartialEq<BigEndian<i32>> for i32
impl PartialEq<BigEndian<i32>> for i32
source§impl PartialEq<BigEndian<i64>> for i64
impl PartialEq<BigEndian<i64>> for i64
source§impl PartialEq<BigEndian<u128>> for u128
impl PartialEq<BigEndian<u128>> for u128
source§impl PartialEq<BigEndian<u16>> for u16
impl PartialEq<BigEndian<u16>> for u16
source§impl PartialEq<BigEndian<u32>> for u32
impl PartialEq<BigEndian<u32>> for u32
source§impl PartialEq<BigEndian<u64>> for u64
impl PartialEq<BigEndian<u64>> for u64
source§impl PartialEq<NonZero<i128>> for BigEndian<NonZeroI128>
impl PartialEq<NonZero<i128>> for BigEndian<NonZeroI128>
source§fn eq(&self, other: &NonZeroI128) -> bool
fn eq(&self, other: &NonZeroI128) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<i16>> for BigEndian<NonZeroI16>
impl PartialEq<NonZero<i16>> for BigEndian<NonZeroI16>
source§fn eq(&self, other: &NonZeroI16) -> bool
fn eq(&self, other: &NonZeroI16) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<i32>> for BigEndian<NonZeroI32>
impl PartialEq<NonZero<i32>> for BigEndian<NonZeroI32>
source§fn eq(&self, other: &NonZeroI32) -> bool
fn eq(&self, other: &NonZeroI32) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<i64>> for BigEndian<NonZeroI64>
impl PartialEq<NonZero<i64>> for BigEndian<NonZeroI64>
source§fn eq(&self, other: &NonZeroI64) -> bool
fn eq(&self, other: &NonZeroI64) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<u128>> for BigEndian<NonZeroU128>
impl PartialEq<NonZero<u128>> for BigEndian<NonZeroU128>
source§fn eq(&self, other: &NonZeroU128) -> bool
fn eq(&self, other: &NonZeroU128) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<u16>> for BigEndian<NonZeroU16>
impl PartialEq<NonZero<u16>> for BigEndian<NonZeroU16>
source§fn eq(&self, other: &NonZeroU16) -> bool
fn eq(&self, other: &NonZeroU16) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<u32>> for BigEndian<NonZeroU32>
impl PartialEq<NonZero<u32>> for BigEndian<NonZeroU32>
source§fn eq(&self, other: &NonZeroU32) -> bool
fn eq(&self, other: &NonZeroU32) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<NonZero<u64>> for BigEndian<NonZeroU64>
impl PartialEq<NonZero<u64>> for BigEndian<NonZeroU64>
source§fn eq(&self, other: &NonZeroU64) -> bool
fn eq(&self, other: &NonZeroU64) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<char> for BigEndian<char>
impl PartialEq<char> for BigEndian<char>
source§impl PartialEq<i128> for BigEndian<i128>
impl PartialEq<i128> for BigEndian<i128>
source§impl PartialEq<u128> for BigEndian<u128>
impl PartialEq<u128> for BigEndian<u128>
source§impl PartialEq for BigEndian<NonZeroI128>
impl PartialEq for BigEndian<NonZeroI128>
source§impl PartialEq for BigEndian<NonZeroI16>
impl PartialEq for BigEndian<NonZeroI16>
source§impl PartialEq for BigEndian<NonZeroI32>
impl PartialEq for BigEndian<NonZeroI32>
source§impl PartialEq for BigEndian<NonZeroI64>
impl PartialEq for BigEndian<NonZeroI64>
source§impl PartialEq for BigEndian<NonZeroU128>
impl PartialEq for BigEndian<NonZeroU128>
source§impl PartialEq for BigEndian<NonZeroU16>
impl PartialEq for BigEndian<NonZeroU16>
source§impl PartialEq for BigEndian<NonZeroU32>
impl PartialEq for BigEndian<NonZeroU32>
source§impl PartialEq for BigEndian<NonZeroU64>
impl PartialEq for BigEndian<NonZeroU64>
source§impl PartialEq for BigEndian<char>
impl PartialEq for BigEndian<char>
source§impl PartialEq for BigEndian<f32>
impl PartialEq for BigEndian<f32>
source§impl PartialEq for BigEndian<f64>
impl PartialEq for BigEndian<f64>
source§impl PartialEq for BigEndian<i128>
impl PartialEq for BigEndian<i128>
source§impl PartialEq for BigEndian<i16>
impl PartialEq for BigEndian<i16>
source§impl PartialEq for BigEndian<i32>
impl PartialEq for BigEndian<i32>
source§impl PartialEq for BigEndian<i64>
impl PartialEq for BigEndian<i64>
source§impl PartialEq for BigEndian<u128>
impl PartialEq for BigEndian<u128>
source§impl PartialEq for BigEndian<u16>
impl PartialEq for BigEndian<u16>
source§impl PartialEq for BigEndian<u32>
impl PartialEq for BigEndian<u32>
source§impl PartialEq for BigEndian<u64>
impl PartialEq for BigEndian<u64>
source§impl PartialOrd<NonZero<i128>> for BigEndian<NonZeroI128>
impl PartialOrd<NonZero<i128>> for BigEndian<NonZeroI128>
source§fn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<i16>> for BigEndian<NonZeroI16>
impl PartialOrd<NonZero<i16>> for BigEndian<NonZeroI16>
source§fn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<i32>> for BigEndian<NonZeroI32>
impl PartialOrd<NonZero<i32>> for BigEndian<NonZeroI32>
source§fn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<i64>> for BigEndian<NonZeroI64>
impl PartialOrd<NonZero<i64>> for BigEndian<NonZeroI64>
source§fn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<u128>> for BigEndian<NonZeroU128>
impl PartialOrd<NonZero<u128>> for BigEndian<NonZeroU128>
source§fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<u16>> for BigEndian<NonZeroU16>
impl PartialOrd<NonZero<u16>> for BigEndian<NonZeroU16>
source§fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<u32>> for BigEndian<NonZeroU32>
impl PartialOrd<NonZero<u32>> for BigEndian<NonZeroU32>
source§fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<NonZero<u64>> for BigEndian<NonZeroU64>
impl PartialOrd<NonZero<u64>> for BigEndian<NonZeroU64>
source§fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<char> for BigEndian<char>
impl PartialOrd<char> for BigEndian<char>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<f32> for BigEndian<f32>
impl PartialOrd<f32> for BigEndian<f32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<f64> for BigEndian<f64>
impl PartialOrd<f64> for BigEndian<f64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<i128> for BigEndian<i128>
impl PartialOrd<i128> for BigEndian<i128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<i16> for BigEndian<i16>
impl PartialOrd<i16> for BigEndian<i16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<i32> for BigEndian<i32>
impl PartialOrd<i32> for BigEndian<i32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<i64> for BigEndian<i64>
impl PartialOrd<i64> for BigEndian<i64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<u128> for BigEndian<u128>
impl PartialOrd<u128> for BigEndian<u128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<u16> for BigEndian<u16>
impl PartialOrd<u16> for BigEndian<u16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<u32> for BigEndian<u32>
impl PartialOrd<u32> for BigEndian<u32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd<u64> for BigEndian<u64>
impl PartialOrd<u64> for BigEndian<u64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroI128>
impl PartialOrd for BigEndian<NonZeroI128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroI16>
impl PartialOrd for BigEndian<NonZeroI16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroI32>
impl PartialOrd for BigEndian<NonZeroI32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroI64>
impl PartialOrd for BigEndian<NonZeroI64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroU128>
impl PartialOrd for BigEndian<NonZeroU128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroU16>
impl PartialOrd for BigEndian<NonZeroU16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroU32>
impl PartialOrd for BigEndian<NonZeroU32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<NonZeroU64>
impl PartialOrd for BigEndian<NonZeroU64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<char>
impl PartialOrd for BigEndian<char>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<f32>
impl PartialOrd for BigEndian<f32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<f64>
impl PartialOrd for BigEndian<f64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<i128>
impl PartialOrd for BigEndian<i128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<i16>
impl PartialOrd for BigEndian<i16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<i32>
impl PartialOrd for BigEndian<i32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<i64>
impl PartialOrd for BigEndian<i64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<u128>
impl PartialOrd for BigEndian<u128>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<u16>
impl PartialOrd for BigEndian<u16>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<u32>
impl PartialOrd for BigEndian<u32>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl PartialOrd for BigEndian<u64>
impl PartialOrd for BigEndian<u64>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl RemAssign<&f32> for BigEndian<f32>
impl RemAssign<&f32> for BigEndian<f32>
source§fn rem_assign(&mut self, other: &f32)
fn rem_assign(&mut self, other: &f32)
%=
operation. Read moresource§impl RemAssign<&f64> for BigEndian<f64>
impl RemAssign<&f64> for BigEndian<f64>
source§fn rem_assign(&mut self, other: &f64)
fn rem_assign(&mut self, other: &f64)
%=
operation. Read moresource§impl RemAssign<&i128> for BigEndian<i128>
impl RemAssign<&i128> for BigEndian<i128>
source§fn rem_assign(&mut self, other: &i128)
fn rem_assign(&mut self, other: &i128)
%=
operation. Read moresource§impl RemAssign<&i16> for BigEndian<i16>
impl RemAssign<&i16> for BigEndian<i16>
source§fn rem_assign(&mut self, other: &i16)
fn rem_assign(&mut self, other: &i16)
%=
operation. Read moresource§impl RemAssign<&i32> for BigEndian<i32>
impl RemAssign<&i32> for BigEndian<i32>
source§fn rem_assign(&mut self, other: &i32)
fn rem_assign(&mut self, other: &i32)
%=
operation. Read moresource§impl RemAssign<&i64> for BigEndian<i64>
impl RemAssign<&i64> for BigEndian<i64>
source§fn rem_assign(&mut self, other: &i64)
fn rem_assign(&mut self, other: &i64)
%=
operation. Read moresource§impl RemAssign<&u128> for BigEndian<u128>
impl RemAssign<&u128> for BigEndian<u128>
source§fn rem_assign(&mut self, other: &u128)
fn rem_assign(&mut self, other: &u128)
%=
operation. Read moresource§impl RemAssign<&u16> for BigEndian<u16>
impl RemAssign<&u16> for BigEndian<u16>
source§fn rem_assign(&mut self, other: &u16)
fn rem_assign(&mut self, other: &u16)
%=
operation. Read moresource§impl RemAssign<&u32> for BigEndian<u32>
impl RemAssign<&u32> for BigEndian<u32>
source§fn rem_assign(&mut self, other: &u32)
fn rem_assign(&mut self, other: &u32)
%=
operation. Read moresource§impl RemAssign<&u64> for BigEndian<u64>
impl RemAssign<&u64> for BigEndian<u64>
source§fn rem_assign(&mut self, other: &u64)
fn rem_assign(&mut self, other: &u64)
%=
operation. Read moresource§impl RemAssign<f32> for BigEndian<f32>
impl RemAssign<f32> for BigEndian<f32>
source§fn rem_assign(&mut self, other: f32)
fn rem_assign(&mut self, other: f32)
%=
operation. Read moresource§impl RemAssign<f64> for BigEndian<f64>
impl RemAssign<f64> for BigEndian<f64>
source§fn rem_assign(&mut self, other: f64)
fn rem_assign(&mut self, other: f64)
%=
operation. Read moresource§impl RemAssign<i128> for BigEndian<i128>
impl RemAssign<i128> for BigEndian<i128>
source§fn rem_assign(&mut self, other: i128)
fn rem_assign(&mut self, other: i128)
%=
operation. Read moresource§impl RemAssign<i16> for BigEndian<i16>
impl RemAssign<i16> for BigEndian<i16>
source§fn rem_assign(&mut self, other: i16)
fn rem_assign(&mut self, other: i16)
%=
operation. Read moresource§impl RemAssign<i32> for BigEndian<i32>
impl RemAssign<i32> for BigEndian<i32>
source§fn rem_assign(&mut self, other: i32)
fn rem_assign(&mut self, other: i32)
%=
operation. Read moresource§impl RemAssign<i64> for BigEndian<i64>
impl RemAssign<i64> for BigEndian<i64>
source§fn rem_assign(&mut self, other: i64)
fn rem_assign(&mut self, other: i64)
%=
operation. Read moresource§impl RemAssign<u128> for BigEndian<u128>
impl RemAssign<u128> for BigEndian<u128>
source§fn rem_assign(&mut self, other: u128)
fn rem_assign(&mut self, other: u128)
%=
operation. Read moresource§impl RemAssign<u16> for BigEndian<u16>
impl RemAssign<u16> for BigEndian<u16>
source§fn rem_assign(&mut self, other: u16)
fn rem_assign(&mut self, other: u16)
%=
operation. Read moresource§impl RemAssign<u32> for BigEndian<u32>
impl RemAssign<u32> for BigEndian<u32>
source§fn rem_assign(&mut self, other: u32)
fn rem_assign(&mut self, other: u32)
%=
operation. Read moresource§impl RemAssign<u64> for BigEndian<u64>
impl RemAssign<u64> for BigEndian<u64>
source§fn rem_assign(&mut self, other: u64)
fn rem_assign(&mut self, other: u64)
%=
operation. Read moresource§impl ShlAssign<&i128> for BigEndian<i128>
impl ShlAssign<&i128> for BigEndian<i128>
source§fn shl_assign(&mut self, other: &i128)
fn shl_assign(&mut self, other: &i128)
<<=
operation. Read moresource§impl ShlAssign<&i16> for BigEndian<i16>
impl ShlAssign<&i16> for BigEndian<i16>
source§fn shl_assign(&mut self, other: &i16)
fn shl_assign(&mut self, other: &i16)
<<=
operation. Read moresource§impl ShlAssign<&i32> for BigEndian<i32>
impl ShlAssign<&i32> for BigEndian<i32>
source§fn shl_assign(&mut self, other: &i32)
fn shl_assign(&mut self, other: &i32)
<<=
operation. Read moresource§impl ShlAssign<&i64> for BigEndian<i64>
impl ShlAssign<&i64> for BigEndian<i64>
source§fn shl_assign(&mut self, other: &i64)
fn shl_assign(&mut self, other: &i64)
<<=
operation. Read moresource§impl ShlAssign<&u128> for BigEndian<u128>
impl ShlAssign<&u128> for BigEndian<u128>
source§fn shl_assign(&mut self, other: &u128)
fn shl_assign(&mut self, other: &u128)
<<=
operation. Read moresource§impl ShlAssign<&u16> for BigEndian<u16>
impl ShlAssign<&u16> for BigEndian<u16>
source§fn shl_assign(&mut self, other: &u16)
fn shl_assign(&mut self, other: &u16)
<<=
operation. Read moresource§impl ShlAssign<&u32> for BigEndian<u32>
impl ShlAssign<&u32> for BigEndian<u32>
source§fn shl_assign(&mut self, other: &u32)
fn shl_assign(&mut self, other: &u32)
<<=
operation. Read moresource§impl ShlAssign<&u64> for BigEndian<u64>
impl ShlAssign<&u64> for BigEndian<u64>
source§fn shl_assign(&mut self, other: &u64)
fn shl_assign(&mut self, other: &u64)
<<=
operation. Read moresource§impl ShlAssign<i128> for BigEndian<i128>
impl ShlAssign<i128> for BigEndian<i128>
source§fn shl_assign(&mut self, other: i128)
fn shl_assign(&mut self, other: i128)
<<=
operation. Read moresource§impl ShlAssign<i16> for BigEndian<i16>
impl ShlAssign<i16> for BigEndian<i16>
source§fn shl_assign(&mut self, other: i16)
fn shl_assign(&mut self, other: i16)
<<=
operation. Read moresource§impl ShlAssign<i32> for BigEndian<i32>
impl ShlAssign<i32> for BigEndian<i32>
source§fn shl_assign(&mut self, other: i32)
fn shl_assign(&mut self, other: i32)
<<=
operation. Read moresource§impl ShlAssign<i64> for BigEndian<i64>
impl ShlAssign<i64> for BigEndian<i64>
source§fn shl_assign(&mut self, other: i64)
fn shl_assign(&mut self, other: i64)
<<=
operation. Read moresource§impl ShlAssign<u128> for BigEndian<u128>
impl ShlAssign<u128> for BigEndian<u128>
source§fn shl_assign(&mut self, other: u128)
fn shl_assign(&mut self, other: u128)
<<=
operation. Read moresource§impl ShlAssign<u16> for BigEndian<u16>
impl ShlAssign<u16> for BigEndian<u16>
source§fn shl_assign(&mut self, other: u16)
fn shl_assign(&mut self, other: u16)
<<=
operation. Read moresource§impl ShlAssign<u32> for BigEndian<u32>
impl ShlAssign<u32> for BigEndian<u32>
source§fn shl_assign(&mut self, other: u32)
fn shl_assign(&mut self, other: u32)
<<=
operation. Read moresource§impl ShlAssign<u64> for BigEndian<u64>
impl ShlAssign<u64> for BigEndian<u64>
source§fn shl_assign(&mut self, other: u64)
fn shl_assign(&mut self, other: u64)
<<=
operation. Read moresource§impl ShrAssign<&i128> for BigEndian<i128>
impl ShrAssign<&i128> for BigEndian<i128>
source§fn shr_assign(&mut self, other: &i128)
fn shr_assign(&mut self, other: &i128)
>>=
operation. Read moresource§impl ShrAssign<&i16> for BigEndian<i16>
impl ShrAssign<&i16> for BigEndian<i16>
source§fn shr_assign(&mut self, other: &i16)
fn shr_assign(&mut self, other: &i16)
>>=
operation. Read moresource§impl ShrAssign<&i32> for BigEndian<i32>
impl ShrAssign<&i32> for BigEndian<i32>
source§fn shr_assign(&mut self, other: &i32)
fn shr_assign(&mut self, other: &i32)
>>=
operation. Read moresource§impl ShrAssign<&i64> for BigEndian<i64>
impl ShrAssign<&i64> for BigEndian<i64>
source§fn shr_assign(&mut self, other: &i64)
fn shr_assign(&mut self, other: &i64)
>>=
operation. Read moresource§impl ShrAssign<&u128> for BigEndian<u128>
impl ShrAssign<&u128> for BigEndian<u128>
source§fn shr_assign(&mut self, other: &u128)
fn shr_assign(&mut self, other: &u128)
>>=
operation. Read moresource§impl ShrAssign<&u16> for BigEndian<u16>
impl ShrAssign<&u16> for BigEndian<u16>
source§fn shr_assign(&mut self, other: &u16)
fn shr_assign(&mut self, other: &u16)
>>=
operation. Read moresource§impl ShrAssign<&u32> for BigEndian<u32>
impl ShrAssign<&u32> for BigEndian<u32>
source§fn shr_assign(&mut self, other: &u32)
fn shr_assign(&mut self, other: &u32)
>>=
operation. Read moresource§impl ShrAssign<&u64> for BigEndian<u64>
impl ShrAssign<&u64> for BigEndian<u64>
source§fn shr_assign(&mut self, other: &u64)
fn shr_assign(&mut self, other: &u64)
>>=
operation. Read moresource§impl ShrAssign<i128> for BigEndian<i128>
impl ShrAssign<i128> for BigEndian<i128>
source§fn shr_assign(&mut self, other: i128)
fn shr_assign(&mut self, other: i128)
>>=
operation. Read moresource§impl ShrAssign<i16> for BigEndian<i16>
impl ShrAssign<i16> for BigEndian<i16>
source§fn shr_assign(&mut self, other: i16)
fn shr_assign(&mut self, other: i16)
>>=
operation. Read moresource§impl ShrAssign<i32> for BigEndian<i32>
impl ShrAssign<i32> for BigEndian<i32>
source§fn shr_assign(&mut self, other: i32)
fn shr_assign(&mut self, other: i32)
>>=
operation. Read moresource§impl ShrAssign<i64> for BigEndian<i64>
impl ShrAssign<i64> for BigEndian<i64>
source§fn shr_assign(&mut self, other: i64)
fn shr_assign(&mut self, other: i64)
>>=
operation. Read moresource§impl ShrAssign<u128> for BigEndian<u128>
impl ShrAssign<u128> for BigEndian<u128>
source§fn shr_assign(&mut self, other: u128)
fn shr_assign(&mut self, other: u128)
>>=
operation. Read moresource§impl ShrAssign<u16> for BigEndian<u16>
impl ShrAssign<u16> for BigEndian<u16>
source§fn shr_assign(&mut self, other: u16)
fn shr_assign(&mut self, other: u16)
>>=
operation. Read moresource§impl ShrAssign<u32> for BigEndian<u32>
impl ShrAssign<u32> for BigEndian<u32>
source§fn shr_assign(&mut self, other: u32)
fn shr_assign(&mut self, other: u32)
>>=
operation. Read moresource§impl ShrAssign<u64> for BigEndian<u64>
impl ShrAssign<u64> for BigEndian<u64>
source§fn shr_assign(&mut self, other: u64)
fn shr_assign(&mut self, other: u64)
>>=
operation. Read moresource§impl SubAssign<&f32> for BigEndian<f32>
impl SubAssign<&f32> for BigEndian<f32>
source§fn sub_assign(&mut self, other: &f32)
fn sub_assign(&mut self, other: &f32)
-=
operation. Read moresource§impl SubAssign<&f64> for BigEndian<f64>
impl SubAssign<&f64> for BigEndian<f64>
source§fn sub_assign(&mut self, other: &f64)
fn sub_assign(&mut self, other: &f64)
-=
operation. Read moresource§impl SubAssign<&i128> for BigEndian<i128>
impl SubAssign<&i128> for BigEndian<i128>
source§fn sub_assign(&mut self, other: &i128)
fn sub_assign(&mut self, other: &i128)
-=
operation. Read moresource§impl SubAssign<&i16> for BigEndian<i16>
impl SubAssign<&i16> for BigEndian<i16>
source§fn sub_assign(&mut self, other: &i16)
fn sub_assign(&mut self, other: &i16)
-=
operation. Read moresource§impl SubAssign<&i32> for BigEndian<i32>
impl SubAssign<&i32> for BigEndian<i32>
source§fn sub_assign(&mut self, other: &i32)
fn sub_assign(&mut self, other: &i32)
-=
operation. Read moresource§impl SubAssign<&i64> for BigEndian<i64>
impl SubAssign<&i64> for BigEndian<i64>
source§fn sub_assign(&mut self, other: &i64)
fn sub_assign(&mut self, other: &i64)
-=
operation. Read moresource§impl SubAssign<&u128> for BigEndian<u128>
impl SubAssign<&u128> for BigEndian<u128>
source§fn sub_assign(&mut self, other: &u128)
fn sub_assign(&mut self, other: &u128)
-=
operation. Read moresource§impl SubAssign<&u16> for BigEndian<u16>
impl SubAssign<&u16> for BigEndian<u16>
source§fn sub_assign(&mut self, other: &u16)
fn sub_assign(&mut self, other: &u16)
-=
operation. Read moresource§impl SubAssign<&u32> for BigEndian<u32>
impl SubAssign<&u32> for BigEndian<u32>
source§fn sub_assign(&mut self, other: &u32)
fn sub_assign(&mut self, other: &u32)
-=
operation. Read moresource§impl SubAssign<&u64> for BigEndian<u64>
impl SubAssign<&u64> for BigEndian<u64>
source§fn sub_assign(&mut self, other: &u64)
fn sub_assign(&mut self, other: &u64)
-=
operation. Read moresource§impl SubAssign<f32> for BigEndian<f32>
impl SubAssign<f32> for BigEndian<f32>
source§fn sub_assign(&mut self, other: f32)
fn sub_assign(&mut self, other: f32)
-=
operation. Read moresource§impl SubAssign<f64> for BigEndian<f64>
impl SubAssign<f64> for BigEndian<f64>
source§fn sub_assign(&mut self, other: f64)
fn sub_assign(&mut self, other: f64)
-=
operation. Read moresource§impl SubAssign<i128> for BigEndian<i128>
impl SubAssign<i128> for BigEndian<i128>
source§fn sub_assign(&mut self, other: i128)
fn sub_assign(&mut self, other: i128)
-=
operation. Read moresource§impl SubAssign<i16> for BigEndian<i16>
impl SubAssign<i16> for BigEndian<i16>
source§fn sub_assign(&mut self, other: i16)
fn sub_assign(&mut self, other: i16)
-=
operation. Read moresource§impl SubAssign<i32> for BigEndian<i32>
impl SubAssign<i32> for BigEndian<i32>
source§fn sub_assign(&mut self, other: i32)
fn sub_assign(&mut self, other: i32)
-=
operation. Read moresource§impl SubAssign<i64> for BigEndian<i64>
impl SubAssign<i64> for BigEndian<i64>
source§fn sub_assign(&mut self, other: i64)
fn sub_assign(&mut self, other: i64)
-=
operation. Read moresource§impl SubAssign<u128> for BigEndian<u128>
impl SubAssign<u128> for BigEndian<u128>
source§fn sub_assign(&mut self, other: u128)
fn sub_assign(&mut self, other: u128)
-=
operation. Read moresource§impl SubAssign<u16> for BigEndian<u16>
impl SubAssign<u16> for BigEndian<u16>
source§fn sub_assign(&mut self, other: u16)
fn sub_assign(&mut self, other: u16)
-=
operation. Read moresource§impl SubAssign<u32> for BigEndian<u32>
impl SubAssign<u32> for BigEndian<u32>
source§fn sub_assign(&mut self, other: u32)
fn sub_assign(&mut self, other: u32)
-=
operation. Read moresource§impl SubAssign<u64> for BigEndian<u64>
impl SubAssign<u64> for BigEndian<u64>
source§fn sub_assign(&mut self, other: u64)
fn sub_assign(&mut self, other: u64)
-=
operation. Read moresource§impl UpperHex for BigEndian<NonZeroI128>
impl UpperHex for BigEndian<NonZeroI128>
source§impl UpperHex for BigEndian<NonZeroI16>
impl UpperHex for BigEndian<NonZeroI16>
source§impl UpperHex for BigEndian<NonZeroI32>
impl UpperHex for BigEndian<NonZeroI32>
source§impl UpperHex for BigEndian<NonZeroI64>
impl UpperHex for BigEndian<NonZeroI64>
source§impl UpperHex for BigEndian<NonZeroU128>
impl UpperHex for BigEndian<NonZeroU128>
source§impl UpperHex for BigEndian<NonZeroU16>
impl UpperHex for BigEndian<NonZeroU16>
source§impl UpperHex for BigEndian<NonZeroU32>
impl UpperHex for BigEndian<NonZeroU32>
source§impl UpperHex for BigEndian<NonZeroU64>
impl UpperHex for BigEndian<NonZeroU64>
impl<T: Copy + Primitive> Copy for BigEndian<T>
impl Eq for BigEndian<NonZeroI128>
impl Eq for BigEndian<NonZeroI16>
impl Eq for BigEndian<NonZeroI32>
impl Eq for BigEndian<NonZeroI64>
impl Eq for BigEndian<NonZeroU128>
impl Eq for BigEndian<NonZeroU16>
impl Eq for BigEndian<NonZeroU32>
impl Eq for BigEndian<NonZeroU64>
impl Eq for BigEndian<char>
impl Eq for BigEndian<f32>
impl Eq for BigEndian<f64>
impl Eq for BigEndian<i128>
impl Eq for BigEndian<i16>
impl Eq for BigEndian<i32>
impl Eq for BigEndian<i64>
impl Eq for BigEndian<u128>
impl Eq for BigEndian<u16>
impl Eq for BigEndian<u32>
impl Eq for BigEndian<u64>
Auto Trait Implementations§
impl<T> Freeze for BigEndian<T>
impl<T> RefUnwindSafe for BigEndian<T>
impl<T> Send for BigEndian<T>
impl<T> Sync for BigEndian<T>
impl<T> Unpin for BigEndian<T>
impl<T> UnwindSafe for BigEndian<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)