Struct rend::NativeEndian
source · [−]#[repr(transparent)]pub struct NativeEndian<T> {
pub value: T,
}
Expand description
A wrapper for native-endian types.
This is mostly useful for const
conversions to big- and little-endian types in contexts where
type inference is required. Because it’s native-endian, the inner value is publicly exposed.
Fields
value: T
The value of the type
Implementations
sourceimpl NativeEndian<i16>
impl NativeEndian<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
sourceimpl NativeEndian<i32>
impl NativeEndian<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
sourceimpl NativeEndian<i64>
impl NativeEndian<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
sourceimpl NativeEndian<i128>
impl NativeEndian<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
sourceimpl NativeEndian<u16>
impl NativeEndian<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
sourceimpl NativeEndian<u32>
impl NativeEndian<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
sourceimpl NativeEndian<u64>
impl NativeEndian<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
sourceimpl NativeEndian<u128>
impl NativeEndian<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
sourceimpl NativeEndian<f32>
impl NativeEndian<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
sourceimpl NativeEndian<f64>
impl NativeEndian<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
sourceimpl NativeEndian<char>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroI16>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroI32>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroI64>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroI128>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroU16>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroU32>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroU64>
impl NativeEndian<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
sourceimpl NativeEndian<NonZeroU128>
impl NativeEndian<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
sourceimpl NativeEndian<AtomicI16>
impl NativeEndian<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.
sourceimpl NativeEndian<AtomicI32>
impl NativeEndian<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.
sourceimpl NativeEndian<AtomicI64>
impl NativeEndian<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.
sourceimpl NativeEndian<AtomicU16>
impl NativeEndian<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.
sourceimpl NativeEndian<AtomicU32>
impl NativeEndian<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.
sourceimpl NativeEndian<AtomicU64>
impl NativeEndian<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
sourceimpl Add<&'_ NativeEndian<f32>> for f32
impl Add<&'_ NativeEndian<f32>> for f32
sourceimpl Add<&'_ NativeEndian<f32>> for &f32
impl Add<&'_ NativeEndian<f32>> for &f32
sourceimpl Add<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl Add<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Add<&'_ NativeEndian<f32>> for &NativeEndian<f32>
impl Add<&'_ NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Add<&'_ NativeEndian<f64>> for f64
impl Add<&'_ NativeEndian<f64>> for f64
sourceimpl Add<&'_ NativeEndian<f64>> for &f64
impl Add<&'_ NativeEndian<f64>> for &f64
sourceimpl Add<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl Add<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Add<&'_ NativeEndian<f64>> for &NativeEndian<f64>
impl Add<&'_ NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Add<&'_ NativeEndian<i128>> for i128
impl Add<&'_ NativeEndian<i128>> for i128
sourceimpl Add<&'_ NativeEndian<i128>> for &i128
impl Add<&'_ NativeEndian<i128>> for &i128
sourceimpl Add<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Add<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Add<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Add<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Add<&'_ NativeEndian<i16>> for i16
impl Add<&'_ NativeEndian<i16>> for i16
sourceimpl Add<&'_ NativeEndian<i16>> for &i16
impl Add<&'_ NativeEndian<i16>> for &i16
sourceimpl Add<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Add<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Add<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Add<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Add<&'_ NativeEndian<i32>> for i32
impl Add<&'_ NativeEndian<i32>> for i32
sourceimpl Add<&'_ NativeEndian<i32>> for &i32
impl Add<&'_ NativeEndian<i32>> for &i32
sourceimpl Add<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Add<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Add<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Add<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Add<&'_ NativeEndian<i64>> for i64
impl Add<&'_ NativeEndian<i64>> for i64
sourceimpl Add<&'_ NativeEndian<i64>> for &i64
impl Add<&'_ NativeEndian<i64>> for &i64
sourceimpl Add<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Add<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Add<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Add<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Add<&'_ NativeEndian<u128>> for u128
impl Add<&'_ NativeEndian<u128>> for u128
sourceimpl Add<&'_ NativeEndian<u128>> for &u128
impl Add<&'_ NativeEndian<u128>> for &u128
sourceimpl Add<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Add<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Add<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Add<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Add<&'_ NativeEndian<u16>> for u16
impl Add<&'_ NativeEndian<u16>> for u16
sourceimpl Add<&'_ NativeEndian<u16>> for &u16
impl Add<&'_ NativeEndian<u16>> for &u16
sourceimpl Add<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Add<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Add<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Add<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Add<&'_ NativeEndian<u32>> for u32
impl Add<&'_ NativeEndian<u32>> for u32
sourceimpl Add<&'_ NativeEndian<u32>> for &u32
impl Add<&'_ NativeEndian<u32>> for &u32
sourceimpl Add<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Add<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Add<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Add<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Add<&'_ NativeEndian<u64>> for u64
impl Add<&'_ NativeEndian<u64>> for u64
sourceimpl Add<&'_ NativeEndian<u64>> for &u64
impl Add<&'_ NativeEndian<u64>> for &u64
sourceimpl Add<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Add<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Add<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Add<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Add<&'_ f32> for NativeEndian<f32>
impl Add<&'_ f32> for NativeEndian<f32>
sourceimpl Add<&'_ f32> for &NativeEndian<f32>
impl Add<&'_ f32> for &NativeEndian<f32>
sourceimpl Add<&'_ f64> for NativeEndian<f64>
impl Add<&'_ f64> for NativeEndian<f64>
sourceimpl Add<&'_ f64> for &NativeEndian<f64>
impl Add<&'_ f64> for &NativeEndian<f64>
sourceimpl Add<&'_ i128> for NativeEndian<i128>
impl Add<&'_ i128> for NativeEndian<i128>
sourceimpl Add<&'_ i128> for &NativeEndian<i128>
impl Add<&'_ i128> for &NativeEndian<i128>
sourceimpl Add<&'_ i16> for NativeEndian<i16>
impl Add<&'_ i16> for NativeEndian<i16>
sourceimpl Add<&'_ i16> for &NativeEndian<i16>
impl Add<&'_ i16> for &NativeEndian<i16>
sourceimpl Add<&'_ i32> for NativeEndian<i32>
impl Add<&'_ i32> for NativeEndian<i32>
sourceimpl Add<&'_ i32> for &NativeEndian<i32>
impl Add<&'_ i32> for &NativeEndian<i32>
sourceimpl Add<&'_ i64> for NativeEndian<i64>
impl Add<&'_ i64> for NativeEndian<i64>
sourceimpl Add<&'_ i64> for &NativeEndian<i64>
impl Add<&'_ i64> for &NativeEndian<i64>
sourceimpl Add<&'_ u128> for NativeEndian<u128>
impl Add<&'_ u128> for NativeEndian<u128>
sourceimpl Add<&'_ u128> for &NativeEndian<u128>
impl Add<&'_ u128> for &NativeEndian<u128>
sourceimpl Add<&'_ u16> for NativeEndian<u16>
impl Add<&'_ u16> for NativeEndian<u16>
sourceimpl Add<&'_ u16> for &NativeEndian<u16>
impl Add<&'_ u16> for &NativeEndian<u16>
sourceimpl Add<&'_ u32> for NativeEndian<u32>
impl Add<&'_ u32> for NativeEndian<u32>
sourceimpl Add<&'_ u32> for &NativeEndian<u32>
impl Add<&'_ u32> for &NativeEndian<u32>
sourceimpl Add<&'_ u64> for NativeEndian<u64>
impl Add<&'_ u64> for NativeEndian<u64>
sourceimpl Add<&'_ u64> for &NativeEndian<u64>
impl Add<&'_ u64> for &NativeEndian<u64>
sourceimpl Add<NativeEndian<f32>> for f32
impl Add<NativeEndian<f32>> for f32
sourceimpl Add<NativeEndian<f32>> for &f32
impl Add<NativeEndian<f32>> for &f32
sourceimpl Add<NativeEndian<f32>> for NativeEndian<f32>
impl Add<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Add<NativeEndian<f32>> for &NativeEndian<f32>
impl Add<NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Add<NativeEndian<f64>> for f64
impl Add<NativeEndian<f64>> for f64
sourceimpl Add<NativeEndian<f64>> for &f64
impl Add<NativeEndian<f64>> for &f64
sourceimpl Add<NativeEndian<f64>> for NativeEndian<f64>
impl Add<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Add<NativeEndian<f64>> for &NativeEndian<f64>
impl Add<NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Add<NativeEndian<i128>> for i128
impl Add<NativeEndian<i128>> for i128
sourceimpl Add<NativeEndian<i128>> for &i128
impl Add<NativeEndian<i128>> for &i128
sourceimpl Add<NativeEndian<i128>> for NativeEndian<i128>
impl Add<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Add<NativeEndian<i128>> for &NativeEndian<i128>
impl Add<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Add<NativeEndian<i16>> for i16
impl Add<NativeEndian<i16>> for i16
sourceimpl Add<NativeEndian<i16>> for &i16
impl Add<NativeEndian<i16>> for &i16
sourceimpl Add<NativeEndian<i16>> for NativeEndian<i16>
impl Add<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Add<NativeEndian<i16>> for &NativeEndian<i16>
impl Add<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Add<NativeEndian<i32>> for i32
impl Add<NativeEndian<i32>> for i32
sourceimpl Add<NativeEndian<i32>> for &i32
impl Add<NativeEndian<i32>> for &i32
sourceimpl Add<NativeEndian<i32>> for NativeEndian<i32>
impl Add<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Add<NativeEndian<i32>> for &NativeEndian<i32>
impl Add<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Add<NativeEndian<i64>> for i64
impl Add<NativeEndian<i64>> for i64
sourceimpl Add<NativeEndian<i64>> for &i64
impl Add<NativeEndian<i64>> for &i64
sourceimpl Add<NativeEndian<i64>> for NativeEndian<i64>
impl Add<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Add<NativeEndian<i64>> for &NativeEndian<i64>
impl Add<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Add<NativeEndian<u128>> for u128
impl Add<NativeEndian<u128>> for u128
sourceimpl Add<NativeEndian<u128>> for &u128
impl Add<NativeEndian<u128>> for &u128
sourceimpl Add<NativeEndian<u128>> for NativeEndian<u128>
impl Add<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Add<NativeEndian<u128>> for &NativeEndian<u128>
impl Add<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Add<NativeEndian<u16>> for u16
impl Add<NativeEndian<u16>> for u16
sourceimpl Add<NativeEndian<u16>> for &u16
impl Add<NativeEndian<u16>> for &u16
sourceimpl Add<NativeEndian<u16>> for NativeEndian<u16>
impl Add<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Add<NativeEndian<u16>> for &NativeEndian<u16>
impl Add<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Add<NativeEndian<u32>> for u32
impl Add<NativeEndian<u32>> for u32
sourceimpl Add<NativeEndian<u32>> for &u32
impl Add<NativeEndian<u32>> for &u32
sourceimpl Add<NativeEndian<u32>> for NativeEndian<u32>
impl Add<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Add<NativeEndian<u32>> for &NativeEndian<u32>
impl Add<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Add<NativeEndian<u64>> for u64
impl Add<NativeEndian<u64>> for u64
sourceimpl Add<NativeEndian<u64>> for &u64
impl Add<NativeEndian<u64>> for &u64
sourceimpl Add<NativeEndian<u64>> for NativeEndian<u64>
impl Add<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Add<NativeEndian<u64>> for &NativeEndian<u64>
impl Add<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Add<f32> for NativeEndian<f32>
impl Add<f32> for NativeEndian<f32>
sourceimpl Add<f32> for &NativeEndian<f32>
impl Add<f32> for &NativeEndian<f32>
sourceimpl Add<f64> for NativeEndian<f64>
impl Add<f64> for NativeEndian<f64>
sourceimpl Add<f64> for &NativeEndian<f64>
impl Add<f64> for &NativeEndian<f64>
sourceimpl Add<i128> for NativeEndian<i128>
impl Add<i128> for NativeEndian<i128>
sourceimpl Add<i128> for &NativeEndian<i128>
impl Add<i128> for &NativeEndian<i128>
sourceimpl Add<i16> for NativeEndian<i16>
impl Add<i16> for NativeEndian<i16>
sourceimpl Add<i16> for &NativeEndian<i16>
impl Add<i16> for &NativeEndian<i16>
sourceimpl Add<i32> for NativeEndian<i32>
impl Add<i32> for NativeEndian<i32>
sourceimpl Add<i32> for &NativeEndian<i32>
impl Add<i32> for &NativeEndian<i32>
sourceimpl Add<i64> for NativeEndian<i64>
impl Add<i64> for NativeEndian<i64>
sourceimpl Add<i64> for &NativeEndian<i64>
impl Add<i64> for &NativeEndian<i64>
sourceimpl Add<u128> for NativeEndian<u128>
impl Add<u128> for NativeEndian<u128>
sourceimpl Add<u128> for &NativeEndian<u128>
impl Add<u128> for &NativeEndian<u128>
sourceimpl Add<u16> for NativeEndian<u16>
impl Add<u16> for NativeEndian<u16>
sourceimpl Add<u16> for &NativeEndian<u16>
impl Add<u16> for &NativeEndian<u16>
sourceimpl Add<u32> for NativeEndian<u32>
impl Add<u32> for NativeEndian<u32>
sourceimpl Add<u32> for &NativeEndian<u32>
impl Add<u32> for &NativeEndian<u32>
sourceimpl Add<u64> for NativeEndian<u64>
impl Add<u64> for NativeEndian<u64>
sourceimpl Add<u64> for &NativeEndian<u64>
impl Add<u64> for &NativeEndian<u64>
sourceimpl AddAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl AddAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourcefn add_assign(&mut self, other: &NativeEndian<f32>)
fn add_assign(&mut self, other: &NativeEndian<f32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl AddAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourcefn add_assign(&mut self, other: &NativeEndian<f64>)
fn add_assign(&mut self, other: &NativeEndian<f64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl AddAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn add_assign(&mut self, other: &NativeEndian<i128>)
fn add_assign(&mut self, other: &NativeEndian<i128>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl AddAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn add_assign(&mut self, other: &NativeEndian<i16>)
fn add_assign(&mut self, other: &NativeEndian<i16>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl AddAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn add_assign(&mut self, other: &NativeEndian<i32>)
fn add_assign(&mut self, other: &NativeEndian<i32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl AddAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn add_assign(&mut self, other: &NativeEndian<i64>)
fn add_assign(&mut self, other: &NativeEndian<i64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl AddAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn add_assign(&mut self, other: &NativeEndian<u128>)
fn add_assign(&mut self, other: &NativeEndian<u128>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl AddAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn add_assign(&mut self, other: &NativeEndian<u16>)
fn add_assign(&mut self, other: &NativeEndian<u16>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl AddAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn add_assign(&mut self, other: &NativeEndian<u32>)
fn add_assign(&mut self, other: &NativeEndian<u32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl AddAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn add_assign(&mut self, other: &NativeEndian<u64>)
fn add_assign(&mut self, other: &NativeEndian<u64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ f32> for NativeEndian<f32>
impl AddAssign<&'_ f32> for NativeEndian<f32>
sourcefn add_assign(&mut self, other: &f32)
fn add_assign(&mut self, other: &f32)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ f64> for NativeEndian<f64>
impl AddAssign<&'_ f64> for NativeEndian<f64>
sourcefn add_assign(&mut self, other: &f64)
fn add_assign(&mut self, other: &f64)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ i128> for NativeEndian<i128>
impl AddAssign<&'_ i128> for NativeEndian<i128>
sourcefn add_assign(&mut self, other: &i128)
fn add_assign(&mut self, other: &i128)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ i16> for NativeEndian<i16>
impl AddAssign<&'_ i16> for NativeEndian<i16>
sourcefn add_assign(&mut self, other: &i16)
fn add_assign(&mut self, other: &i16)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ i32> for NativeEndian<i32>
impl AddAssign<&'_ i32> for NativeEndian<i32>
sourcefn add_assign(&mut self, other: &i32)
fn add_assign(&mut self, other: &i32)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ i64> for NativeEndian<i64>
impl AddAssign<&'_ i64> for NativeEndian<i64>
sourcefn add_assign(&mut self, other: &i64)
fn add_assign(&mut self, other: &i64)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ u128> for NativeEndian<u128>
impl AddAssign<&'_ u128> for NativeEndian<u128>
sourcefn add_assign(&mut self, other: &u128)
fn add_assign(&mut self, other: &u128)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ u16> for NativeEndian<u16>
impl AddAssign<&'_ u16> for NativeEndian<u16>
sourcefn add_assign(&mut self, other: &u16)
fn add_assign(&mut self, other: &u16)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ u32> for NativeEndian<u32>
impl AddAssign<&'_ u32> for NativeEndian<u32>
sourcefn add_assign(&mut self, other: &u32)
fn add_assign(&mut self, other: &u32)
Performs the +=
operation. Read more
sourceimpl AddAssign<&'_ u64> for NativeEndian<u64>
impl AddAssign<&'_ u64> for NativeEndian<u64>
sourcefn add_assign(&mut self, other: &u64)
fn add_assign(&mut self, other: &u64)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<f32>> for NativeEndian<f32>
impl AddAssign<NativeEndian<f32>> for NativeEndian<f32>
sourcefn add_assign(&mut self, other: NativeEndian<f32>)
fn add_assign(&mut self, other: NativeEndian<f32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<f64>> for NativeEndian<f64>
impl AddAssign<NativeEndian<f64>> for NativeEndian<f64>
sourcefn add_assign(&mut self, other: NativeEndian<f64>)
fn add_assign(&mut self, other: NativeEndian<f64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<i128>> for NativeEndian<i128>
impl AddAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn add_assign(&mut self, other: NativeEndian<i128>)
fn add_assign(&mut self, other: NativeEndian<i128>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<i16>> for NativeEndian<i16>
impl AddAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn add_assign(&mut self, other: NativeEndian<i16>)
fn add_assign(&mut self, other: NativeEndian<i16>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<i32>> for NativeEndian<i32>
impl AddAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn add_assign(&mut self, other: NativeEndian<i32>)
fn add_assign(&mut self, other: NativeEndian<i32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<i64>> for NativeEndian<i64>
impl AddAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn add_assign(&mut self, other: NativeEndian<i64>)
fn add_assign(&mut self, other: NativeEndian<i64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<u128>> for NativeEndian<u128>
impl AddAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn add_assign(&mut self, other: NativeEndian<u128>)
fn add_assign(&mut self, other: NativeEndian<u128>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<u16>> for NativeEndian<u16>
impl AddAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn add_assign(&mut self, other: NativeEndian<u16>)
fn add_assign(&mut self, other: NativeEndian<u16>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<u32>> for NativeEndian<u32>
impl AddAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn add_assign(&mut self, other: NativeEndian<u32>)
fn add_assign(&mut self, other: NativeEndian<u32>)
Performs the +=
operation. Read more
sourceimpl AddAssign<NativeEndian<u64>> for NativeEndian<u64>
impl AddAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn add_assign(&mut self, other: NativeEndian<u64>)
fn add_assign(&mut self, other: NativeEndian<u64>)
Performs the +=
operation. Read more
sourceimpl AddAssign<f32> for NativeEndian<f32>
impl AddAssign<f32> for NativeEndian<f32>
sourcefn add_assign(&mut self, other: f32)
fn add_assign(&mut self, other: f32)
Performs the +=
operation. Read more
sourceimpl AddAssign<f64> for NativeEndian<f64>
impl AddAssign<f64> for NativeEndian<f64>
sourcefn add_assign(&mut self, other: f64)
fn add_assign(&mut self, other: f64)
Performs the +=
operation. Read more
sourceimpl AddAssign<i128> for NativeEndian<i128>
impl AddAssign<i128> for NativeEndian<i128>
sourcefn add_assign(&mut self, other: i128)
fn add_assign(&mut self, other: i128)
Performs the +=
operation. Read more
sourceimpl AddAssign<i16> for NativeEndian<i16>
impl AddAssign<i16> for NativeEndian<i16>
sourcefn add_assign(&mut self, other: i16)
fn add_assign(&mut self, other: i16)
Performs the +=
operation. Read more
sourceimpl AddAssign<i32> for NativeEndian<i32>
impl AddAssign<i32> for NativeEndian<i32>
sourcefn add_assign(&mut self, other: i32)
fn add_assign(&mut self, other: i32)
Performs the +=
operation. Read more
sourceimpl AddAssign<i64> for NativeEndian<i64>
impl AddAssign<i64> for NativeEndian<i64>
sourcefn add_assign(&mut self, other: i64)
fn add_assign(&mut self, other: i64)
Performs the +=
operation. Read more
sourceimpl AddAssign<u128> for NativeEndian<u128>
impl AddAssign<u128> for NativeEndian<u128>
sourcefn add_assign(&mut self, other: u128)
fn add_assign(&mut self, other: u128)
Performs the +=
operation. Read more
sourceimpl AddAssign<u16> for NativeEndian<u16>
impl AddAssign<u16> for NativeEndian<u16>
sourcefn add_assign(&mut self, other: u16)
fn add_assign(&mut self, other: u16)
Performs the +=
operation. Read more
sourceimpl AddAssign<u32> for NativeEndian<u32>
impl AddAssign<u32> for NativeEndian<u32>
sourcefn add_assign(&mut self, other: u32)
fn add_assign(&mut self, other: u32)
Performs the +=
operation. Read more
sourceimpl AddAssign<u64> for NativeEndian<u64>
impl AddAssign<u64> for NativeEndian<u64>
sourcefn add_assign(&mut self, other: u64)
fn add_assign(&mut self, other: u64)
Performs the +=
operation. Read more
sourceimpl Binary for NativeEndian<i16>
impl Binary for NativeEndian<i16>
sourceimpl Binary for NativeEndian<i32>
impl Binary for NativeEndian<i32>
sourceimpl Binary for NativeEndian<NonZeroI64>
impl Binary for NativeEndian<NonZeroI64>
sourceimpl Binary for NativeEndian<NonZeroI128>
impl Binary for NativeEndian<NonZeroI128>
sourceimpl Binary for NativeEndian<NonZeroU16>
impl Binary for NativeEndian<NonZeroU16>
sourceimpl Binary for NativeEndian<NonZeroU32>
impl Binary for NativeEndian<NonZeroU32>
sourceimpl Binary for NativeEndian<NonZeroU64>
impl Binary for NativeEndian<NonZeroU64>
sourceimpl Binary for NativeEndian<NonZeroU128>
impl Binary for NativeEndian<NonZeroU128>
sourceimpl Binary for NativeEndian<i64>
impl Binary for NativeEndian<i64>
sourceimpl Binary for NativeEndian<i128>
impl Binary for NativeEndian<i128>
sourceimpl Binary for NativeEndian<u16>
impl Binary for NativeEndian<u16>
sourceimpl Binary for NativeEndian<u32>
impl Binary for NativeEndian<u32>
sourceimpl Binary for NativeEndian<u64>
impl Binary for NativeEndian<u64>
sourceimpl Binary for NativeEndian<u128>
impl Binary for NativeEndian<u128>
sourceimpl Binary for NativeEndian<NonZeroI16>
impl Binary for NativeEndian<NonZeroI16>
sourceimpl Binary for NativeEndian<NonZeroI32>
impl Binary for NativeEndian<NonZeroI32>
sourceimpl BitAnd<&'_ NativeEndian<i128>> for i128
impl BitAnd<&'_ NativeEndian<i128>> for i128
sourceimpl BitAnd<&'_ NativeEndian<i128>> for &i128
impl BitAnd<&'_ NativeEndian<i128>> for &i128
sourceimpl BitAnd<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitAnd<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitAnd<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl BitAnd<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitAnd<&'_ NativeEndian<i16>> for i16
impl BitAnd<&'_ NativeEndian<i16>> for i16
sourceimpl BitAnd<&'_ NativeEndian<i16>> for &i16
impl BitAnd<&'_ NativeEndian<i16>> for &i16
sourceimpl BitAnd<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitAnd<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitAnd<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl BitAnd<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitAnd<&'_ NativeEndian<i32>> for i32
impl BitAnd<&'_ NativeEndian<i32>> for i32
sourceimpl BitAnd<&'_ NativeEndian<i32>> for &i32
impl BitAnd<&'_ NativeEndian<i32>> for &i32
sourceimpl BitAnd<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitAnd<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitAnd<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl BitAnd<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitAnd<&'_ NativeEndian<i64>> for i64
impl BitAnd<&'_ NativeEndian<i64>> for i64
sourceimpl BitAnd<&'_ NativeEndian<i64>> for &i64
impl BitAnd<&'_ NativeEndian<i64>> for &i64
sourceimpl BitAnd<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitAnd<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitAnd<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl BitAnd<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitAnd<&'_ NativeEndian<u128>> for u128
impl BitAnd<&'_ NativeEndian<u128>> for u128
sourceimpl BitAnd<&'_ NativeEndian<u128>> for &u128
impl BitAnd<&'_ NativeEndian<u128>> for &u128
sourceimpl BitAnd<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitAnd<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitAnd<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl BitAnd<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitAnd<&'_ NativeEndian<u16>> for u16
impl BitAnd<&'_ NativeEndian<u16>> for u16
sourceimpl BitAnd<&'_ NativeEndian<u16>> for &u16
impl BitAnd<&'_ NativeEndian<u16>> for &u16
sourceimpl BitAnd<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitAnd<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitAnd<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl BitAnd<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitAnd<&'_ NativeEndian<u32>> for u32
impl BitAnd<&'_ NativeEndian<u32>> for u32
sourceimpl BitAnd<&'_ NativeEndian<u32>> for &u32
impl BitAnd<&'_ NativeEndian<u32>> for &u32
sourceimpl BitAnd<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitAnd<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitAnd<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl BitAnd<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitAnd<&'_ NativeEndian<u64>> for u64
impl BitAnd<&'_ NativeEndian<u64>> for u64
sourceimpl BitAnd<&'_ NativeEndian<u64>> for &u64
impl BitAnd<&'_ NativeEndian<u64>> for &u64
sourceimpl BitAnd<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitAnd<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitAnd<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl BitAnd<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitAnd<&'_ i128> for NativeEndian<i128>
impl BitAnd<&'_ i128> for NativeEndian<i128>
sourceimpl BitAnd<&'_ i128> for &NativeEndian<i128>
impl BitAnd<&'_ i128> for &NativeEndian<i128>
sourceimpl BitAnd<&'_ i16> for NativeEndian<i16>
impl BitAnd<&'_ i16> for NativeEndian<i16>
sourceimpl BitAnd<&'_ i16> for &NativeEndian<i16>
impl BitAnd<&'_ i16> for &NativeEndian<i16>
sourceimpl BitAnd<&'_ i32> for NativeEndian<i32>
impl BitAnd<&'_ i32> for NativeEndian<i32>
sourceimpl BitAnd<&'_ i32> for &NativeEndian<i32>
impl BitAnd<&'_ i32> for &NativeEndian<i32>
sourceimpl BitAnd<&'_ i64> for NativeEndian<i64>
impl BitAnd<&'_ i64> for NativeEndian<i64>
sourceimpl BitAnd<&'_ i64> for &NativeEndian<i64>
impl BitAnd<&'_ i64> for &NativeEndian<i64>
sourceimpl BitAnd<&'_ u128> for NativeEndian<u128>
impl BitAnd<&'_ u128> for NativeEndian<u128>
sourceimpl BitAnd<&'_ u128> for &NativeEndian<u128>
impl BitAnd<&'_ u128> for &NativeEndian<u128>
sourceimpl BitAnd<&'_ u16> for NativeEndian<u16>
impl BitAnd<&'_ u16> for NativeEndian<u16>
sourceimpl BitAnd<&'_ u16> for &NativeEndian<u16>
impl BitAnd<&'_ u16> for &NativeEndian<u16>
sourceimpl BitAnd<&'_ u32> for NativeEndian<u32>
impl BitAnd<&'_ u32> for NativeEndian<u32>
sourceimpl BitAnd<&'_ u32> for &NativeEndian<u32>
impl BitAnd<&'_ u32> for &NativeEndian<u32>
sourceimpl BitAnd<&'_ u64> for NativeEndian<u64>
impl BitAnd<&'_ u64> for NativeEndian<u64>
sourceimpl BitAnd<&'_ u64> for &NativeEndian<u64>
impl BitAnd<&'_ u64> for &NativeEndian<u64>
sourceimpl BitAnd<NativeEndian<i128>> for i128
impl BitAnd<NativeEndian<i128>> for i128
sourceimpl BitAnd<NativeEndian<i128>> for &i128
impl BitAnd<NativeEndian<i128>> for &i128
sourceimpl BitAnd<NativeEndian<i128>> for NativeEndian<i128>
impl BitAnd<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitAnd<NativeEndian<i128>> for &NativeEndian<i128>
impl BitAnd<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitAnd<NativeEndian<i16>> for i16
impl BitAnd<NativeEndian<i16>> for i16
sourceimpl BitAnd<NativeEndian<i16>> for &i16
impl BitAnd<NativeEndian<i16>> for &i16
sourceimpl BitAnd<NativeEndian<i16>> for NativeEndian<i16>
impl BitAnd<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitAnd<NativeEndian<i16>> for &NativeEndian<i16>
impl BitAnd<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitAnd<NativeEndian<i32>> for i32
impl BitAnd<NativeEndian<i32>> for i32
sourceimpl BitAnd<NativeEndian<i32>> for &i32
impl BitAnd<NativeEndian<i32>> for &i32
sourceimpl BitAnd<NativeEndian<i32>> for NativeEndian<i32>
impl BitAnd<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitAnd<NativeEndian<i32>> for &NativeEndian<i32>
impl BitAnd<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitAnd<NativeEndian<i64>> for i64
impl BitAnd<NativeEndian<i64>> for i64
sourceimpl BitAnd<NativeEndian<i64>> for &i64
impl BitAnd<NativeEndian<i64>> for &i64
sourceimpl BitAnd<NativeEndian<i64>> for NativeEndian<i64>
impl BitAnd<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitAnd<NativeEndian<i64>> for &NativeEndian<i64>
impl BitAnd<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitAnd<NativeEndian<u128>> for u128
impl BitAnd<NativeEndian<u128>> for u128
sourceimpl BitAnd<NativeEndian<u128>> for &u128
impl BitAnd<NativeEndian<u128>> for &u128
sourceimpl BitAnd<NativeEndian<u128>> for NativeEndian<u128>
impl BitAnd<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitAnd<NativeEndian<u128>> for &NativeEndian<u128>
impl BitAnd<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitAnd<NativeEndian<u16>> for u16
impl BitAnd<NativeEndian<u16>> for u16
sourceimpl BitAnd<NativeEndian<u16>> for &u16
impl BitAnd<NativeEndian<u16>> for &u16
sourceimpl BitAnd<NativeEndian<u16>> for NativeEndian<u16>
impl BitAnd<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitAnd<NativeEndian<u16>> for &NativeEndian<u16>
impl BitAnd<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitAnd<NativeEndian<u32>> for u32
impl BitAnd<NativeEndian<u32>> for u32
sourceimpl BitAnd<NativeEndian<u32>> for &u32
impl BitAnd<NativeEndian<u32>> for &u32
sourceimpl BitAnd<NativeEndian<u32>> for NativeEndian<u32>
impl BitAnd<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitAnd<NativeEndian<u32>> for &NativeEndian<u32>
impl BitAnd<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitAnd<NativeEndian<u64>> for u64
impl BitAnd<NativeEndian<u64>> for u64
sourceimpl BitAnd<NativeEndian<u64>> for &u64
impl BitAnd<NativeEndian<u64>> for &u64
sourceimpl BitAnd<NativeEndian<u64>> for NativeEndian<u64>
impl BitAnd<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitAnd<NativeEndian<u64>> for &NativeEndian<u64>
impl BitAnd<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitAnd<i128> for NativeEndian<i128>
impl BitAnd<i128> for NativeEndian<i128>
sourceimpl BitAnd<i128> for &NativeEndian<i128>
impl BitAnd<i128> for &NativeEndian<i128>
sourceimpl BitAnd<i16> for NativeEndian<i16>
impl BitAnd<i16> for NativeEndian<i16>
sourceimpl BitAnd<i16> for &NativeEndian<i16>
impl BitAnd<i16> for &NativeEndian<i16>
sourceimpl BitAnd<i32> for NativeEndian<i32>
impl BitAnd<i32> for NativeEndian<i32>
sourceimpl BitAnd<i32> for &NativeEndian<i32>
impl BitAnd<i32> for &NativeEndian<i32>
sourceimpl BitAnd<i64> for NativeEndian<i64>
impl BitAnd<i64> for NativeEndian<i64>
sourceimpl BitAnd<i64> for &NativeEndian<i64>
impl BitAnd<i64> for &NativeEndian<i64>
sourceimpl BitAnd<u128> for NativeEndian<u128>
impl BitAnd<u128> for NativeEndian<u128>
sourceimpl BitAnd<u128> for &NativeEndian<u128>
impl BitAnd<u128> for &NativeEndian<u128>
sourceimpl BitAnd<u16> for NativeEndian<u16>
impl BitAnd<u16> for NativeEndian<u16>
sourceimpl BitAnd<u16> for &NativeEndian<u16>
impl BitAnd<u16> for &NativeEndian<u16>
sourceimpl BitAnd<u32> for NativeEndian<u32>
impl BitAnd<u32> for NativeEndian<u32>
sourceimpl BitAnd<u32> for &NativeEndian<u32>
impl BitAnd<u32> for &NativeEndian<u32>
sourceimpl BitAnd<u64> for NativeEndian<u64>
impl BitAnd<u64> for NativeEndian<u64>
sourceimpl BitAnd<u64> for &NativeEndian<u64>
impl BitAnd<u64> for &NativeEndian<u64>
sourceimpl BitAndAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitAndAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitand_assign(&mut self, other: &NativeEndian<i128>)
fn bitand_assign(&mut self, other: &NativeEndian<i128>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitAndAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitand_assign(&mut self, other: &NativeEndian<i16>)
fn bitand_assign(&mut self, other: &NativeEndian<i16>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitAndAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitand_assign(&mut self, other: &NativeEndian<i32>)
fn bitand_assign(&mut self, other: &NativeEndian<i32>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitAndAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitand_assign(&mut self, other: &NativeEndian<i64>)
fn bitand_assign(&mut self, other: &NativeEndian<i64>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitAndAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitand_assign(&mut self, other: &NativeEndian<u128>)
fn bitand_assign(&mut self, other: &NativeEndian<u128>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitAndAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitand_assign(&mut self, other: &NativeEndian<u16>)
fn bitand_assign(&mut self, other: &NativeEndian<u16>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitAndAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitand_assign(&mut self, other: &NativeEndian<u32>)
fn bitand_assign(&mut self, other: &NativeEndian<u32>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitAndAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitand_assign(&mut self, other: &NativeEndian<u64>)
fn bitand_assign(&mut self, other: &NativeEndian<u64>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ i128> for NativeEndian<i128>
impl BitAndAssign<&'_ i128> for NativeEndian<i128>
sourcefn bitand_assign(&mut self, other: &i128)
fn bitand_assign(&mut self, other: &i128)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ i16> for NativeEndian<i16>
impl BitAndAssign<&'_ i16> for NativeEndian<i16>
sourcefn bitand_assign(&mut self, other: &i16)
fn bitand_assign(&mut self, other: &i16)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ i32> for NativeEndian<i32>
impl BitAndAssign<&'_ i32> for NativeEndian<i32>
sourcefn bitand_assign(&mut self, other: &i32)
fn bitand_assign(&mut self, other: &i32)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ i64> for NativeEndian<i64>
impl BitAndAssign<&'_ i64> for NativeEndian<i64>
sourcefn bitand_assign(&mut self, other: &i64)
fn bitand_assign(&mut self, other: &i64)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ u128> for NativeEndian<u128>
impl BitAndAssign<&'_ u128> for NativeEndian<u128>
sourcefn bitand_assign(&mut self, other: &u128)
fn bitand_assign(&mut self, other: &u128)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ u16> for NativeEndian<u16>
impl BitAndAssign<&'_ u16> for NativeEndian<u16>
sourcefn bitand_assign(&mut self, other: &u16)
fn bitand_assign(&mut self, other: &u16)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ u32> for NativeEndian<u32>
impl BitAndAssign<&'_ u32> for NativeEndian<u32>
sourcefn bitand_assign(&mut self, other: &u32)
fn bitand_assign(&mut self, other: &u32)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<&'_ u64> for NativeEndian<u64>
impl BitAndAssign<&'_ u64> for NativeEndian<u64>
sourcefn bitand_assign(&mut self, other: &u64)
fn bitand_assign(&mut self, other: &u64)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<i128>> for NativeEndian<i128>
impl BitAndAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitand_assign(&mut self, other: NativeEndian<i128>)
fn bitand_assign(&mut self, other: NativeEndian<i128>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<i16>> for NativeEndian<i16>
impl BitAndAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitand_assign(&mut self, other: NativeEndian<i16>)
fn bitand_assign(&mut self, other: NativeEndian<i16>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<i32>> for NativeEndian<i32>
impl BitAndAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitand_assign(&mut self, other: NativeEndian<i32>)
fn bitand_assign(&mut self, other: NativeEndian<i32>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<i64>> for NativeEndian<i64>
impl BitAndAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitand_assign(&mut self, other: NativeEndian<i64>)
fn bitand_assign(&mut self, other: NativeEndian<i64>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<u128>> for NativeEndian<u128>
impl BitAndAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitand_assign(&mut self, other: NativeEndian<u128>)
fn bitand_assign(&mut self, other: NativeEndian<u128>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<u16>> for NativeEndian<u16>
impl BitAndAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitand_assign(&mut self, other: NativeEndian<u16>)
fn bitand_assign(&mut self, other: NativeEndian<u16>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<u32>> for NativeEndian<u32>
impl BitAndAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitand_assign(&mut self, other: NativeEndian<u32>)
fn bitand_assign(&mut self, other: NativeEndian<u32>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<NativeEndian<u64>> for NativeEndian<u64>
impl BitAndAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitand_assign(&mut self, other: NativeEndian<u64>)
fn bitand_assign(&mut self, other: NativeEndian<u64>)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<i128> for NativeEndian<i128>
impl BitAndAssign<i128> for NativeEndian<i128>
sourcefn bitand_assign(&mut self, other: i128)
fn bitand_assign(&mut self, other: i128)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<i16> for NativeEndian<i16>
impl BitAndAssign<i16> for NativeEndian<i16>
sourcefn bitand_assign(&mut self, other: i16)
fn bitand_assign(&mut self, other: i16)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<i32> for NativeEndian<i32>
impl BitAndAssign<i32> for NativeEndian<i32>
sourcefn bitand_assign(&mut self, other: i32)
fn bitand_assign(&mut self, other: i32)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<i64> for NativeEndian<i64>
impl BitAndAssign<i64> for NativeEndian<i64>
sourcefn bitand_assign(&mut self, other: i64)
fn bitand_assign(&mut self, other: i64)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<u128> for NativeEndian<u128>
impl BitAndAssign<u128> for NativeEndian<u128>
sourcefn bitand_assign(&mut self, other: u128)
fn bitand_assign(&mut self, other: u128)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<u16> for NativeEndian<u16>
impl BitAndAssign<u16> for NativeEndian<u16>
sourcefn bitand_assign(&mut self, other: u16)
fn bitand_assign(&mut self, other: u16)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<u32> for NativeEndian<u32>
impl BitAndAssign<u32> for NativeEndian<u32>
sourcefn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<u64> for NativeEndian<u64>
impl BitAndAssign<u64> for NativeEndian<u64>
sourcefn bitand_assign(&mut self, other: u64)
fn bitand_assign(&mut self, other: u64)
Performs the &=
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI128>> for NonZeroI128
impl BitOr<&'_ NativeEndian<NonZeroI128>> for NonZeroI128
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
impl BitOr<&'_ NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI128>> for &NativeEndian<NonZeroI128>
impl BitOr<&'_ NativeEndian<NonZeroI128>> for &NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI16>> for NonZeroI16
impl BitOr<&'_ NativeEndian<NonZeroI16>> for NonZeroI16
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
impl BitOr<&'_ NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI16>> for &NativeEndian<NonZeroI16>
impl BitOr<&'_ NativeEndian<NonZeroI16>> for &NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI32>> for NonZeroI32
impl BitOr<&'_ NativeEndian<NonZeroI32>> for NonZeroI32
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
impl BitOr<&'_ NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI32>> for &NativeEndian<NonZeroI32>
impl BitOr<&'_ NativeEndian<NonZeroI32>> for &NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI64>> for NonZeroI64
impl BitOr<&'_ NativeEndian<NonZeroI64>> for NonZeroI64
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
impl BitOr<&'_ NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroI64>> for &NativeEndian<NonZeroI64>
impl BitOr<&'_ NativeEndian<NonZeroI64>> for &NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU128>> for NonZeroU128
impl BitOr<&'_ NativeEndian<NonZeroU128>> for NonZeroU128
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
impl BitOr<&'_ NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU128>> for &NativeEndian<NonZeroU128>
impl BitOr<&'_ NativeEndian<NonZeroU128>> for &NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU16>> for NonZeroU16
impl BitOr<&'_ NativeEndian<NonZeroU16>> for NonZeroU16
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
impl BitOr<&'_ NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU16>> for &NativeEndian<NonZeroU16>
impl BitOr<&'_ NativeEndian<NonZeroU16>> for &NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU32>> for NonZeroU32
impl BitOr<&'_ NativeEndian<NonZeroU32>> for NonZeroU32
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
impl BitOr<&'_ NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU32>> for &NativeEndian<NonZeroU32>
impl BitOr<&'_ NativeEndian<NonZeroU32>> for &NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU64>> for NonZeroU64
impl BitOr<&'_ NativeEndian<NonZeroU64>> for NonZeroU64
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
impl BitOr<&'_ NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<NonZeroU64>> for &NativeEndian<NonZeroU64>
impl BitOr<&'_ NativeEndian<NonZeroU64>> for &NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: &NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<&'_ NativeEndian<i128>> for i128
impl BitOr<&'_ NativeEndian<i128>> for i128
sourceimpl BitOr<&'_ NativeEndian<i128>> for &i128
impl BitOr<&'_ NativeEndian<i128>> for &i128
sourceimpl BitOr<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitOr<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitOr<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl BitOr<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitOr<&'_ NativeEndian<i16>> for i16
impl BitOr<&'_ NativeEndian<i16>> for i16
sourceimpl BitOr<&'_ NativeEndian<i16>> for &i16
impl BitOr<&'_ NativeEndian<i16>> for &i16
sourceimpl BitOr<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitOr<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitOr<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl BitOr<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitOr<&'_ NativeEndian<i32>> for i32
impl BitOr<&'_ NativeEndian<i32>> for i32
sourceimpl BitOr<&'_ NativeEndian<i32>> for &i32
impl BitOr<&'_ NativeEndian<i32>> for &i32
sourceimpl BitOr<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitOr<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitOr<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl BitOr<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitOr<&'_ NativeEndian<i64>> for i64
impl BitOr<&'_ NativeEndian<i64>> for i64
sourceimpl BitOr<&'_ NativeEndian<i64>> for &i64
impl BitOr<&'_ NativeEndian<i64>> for &i64
sourceimpl BitOr<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitOr<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitOr<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl BitOr<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitOr<&'_ NativeEndian<u128>> for u128
impl BitOr<&'_ NativeEndian<u128>> for u128
sourceimpl BitOr<&'_ NativeEndian<u128>> for &u128
impl BitOr<&'_ NativeEndian<u128>> for &u128
sourceimpl BitOr<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitOr<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitOr<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl BitOr<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitOr<&'_ NativeEndian<u16>> for u16
impl BitOr<&'_ NativeEndian<u16>> for u16
sourceimpl BitOr<&'_ NativeEndian<u16>> for &u16
impl BitOr<&'_ NativeEndian<u16>> for &u16
sourceimpl BitOr<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitOr<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitOr<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl BitOr<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitOr<&'_ NativeEndian<u32>> for u32
impl BitOr<&'_ NativeEndian<u32>> for u32
sourceimpl BitOr<&'_ NativeEndian<u32>> for &u32
impl BitOr<&'_ NativeEndian<u32>> for &u32
sourceimpl BitOr<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitOr<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitOr<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl BitOr<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitOr<&'_ NativeEndian<u64>> for u64
impl BitOr<&'_ NativeEndian<u64>> for u64
sourceimpl BitOr<&'_ NativeEndian<u64>> for &u64
impl BitOr<&'_ NativeEndian<u64>> for &u64
sourceimpl BitOr<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitOr<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitOr<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl BitOr<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitOr<&'_ i128> for NativeEndian<i128>
impl BitOr<&'_ i128> for NativeEndian<i128>
sourceimpl BitOr<&'_ i128> for &NativeEndian<i128>
impl BitOr<&'_ i128> for &NativeEndian<i128>
sourceimpl BitOr<&'_ i16> for NativeEndian<i16>
impl BitOr<&'_ i16> for NativeEndian<i16>
sourceimpl BitOr<&'_ i16> for &NativeEndian<i16>
impl BitOr<&'_ i16> for &NativeEndian<i16>
sourceimpl BitOr<&'_ i32> for NativeEndian<i32>
impl BitOr<&'_ i32> for NativeEndian<i32>
sourceimpl BitOr<&'_ i32> for &NativeEndian<i32>
impl BitOr<&'_ i32> for &NativeEndian<i32>
sourceimpl BitOr<&'_ i64> for NativeEndian<i64>
impl BitOr<&'_ i64> for NativeEndian<i64>
sourceimpl BitOr<&'_ i64> for &NativeEndian<i64>
impl BitOr<&'_ i64> for &NativeEndian<i64>
sourceimpl BitOr<&'_ u128> for NativeEndian<u128>
impl BitOr<&'_ u128> for NativeEndian<u128>
sourceimpl BitOr<&'_ u128> for &NativeEndian<u128>
impl BitOr<&'_ u128> for &NativeEndian<u128>
sourceimpl BitOr<&'_ u16> for NativeEndian<u16>
impl BitOr<&'_ u16> for NativeEndian<u16>
sourceimpl BitOr<&'_ u16> for &NativeEndian<u16>
impl BitOr<&'_ u16> for &NativeEndian<u16>
sourceimpl BitOr<&'_ u32> for NativeEndian<u32>
impl BitOr<&'_ u32> for NativeEndian<u32>
sourceimpl BitOr<&'_ u32> for &NativeEndian<u32>
impl BitOr<&'_ u32> for &NativeEndian<u32>
sourceimpl BitOr<&'_ u64> for NativeEndian<u64>
impl BitOr<&'_ u64> for NativeEndian<u64>
sourceimpl BitOr<&'_ u64> for &NativeEndian<u64>
impl BitOr<&'_ u64> for &NativeEndian<u64>
sourceimpl BitOr<NativeEndian<NonZeroI128>> for NonZeroI128
impl BitOr<NativeEndian<NonZeroI128>> for NonZeroI128
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
impl BitOr<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI128>> for &NativeEndian<NonZeroI128>
impl BitOr<NativeEndian<NonZeroI128>> for &NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI16>> for NonZeroI16
impl BitOr<NativeEndian<NonZeroI16>> for NonZeroI16
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
impl BitOr<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI16>> for &NativeEndian<NonZeroI16>
impl BitOr<NativeEndian<NonZeroI16>> for &NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI32>> for NonZeroI32
impl BitOr<NativeEndian<NonZeroI32>> for NonZeroI32
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
impl BitOr<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI32>> for &NativeEndian<NonZeroI32>
impl BitOr<NativeEndian<NonZeroI32>> for &NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI64>> for NonZeroI64
impl BitOr<NativeEndian<NonZeroI64>> for NonZeroI64
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
impl BitOr<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroI64>> for &NativeEndian<NonZeroI64>
impl BitOr<NativeEndian<NonZeroI64>> for &NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroI64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU128>> for NonZeroU128
impl BitOr<NativeEndian<NonZeroU128>> for NonZeroU128
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
impl BitOr<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU128>> for &NativeEndian<NonZeroU128>
impl BitOr<NativeEndian<NonZeroU128>> for &NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU128>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU16>> for NonZeroU16
impl BitOr<NativeEndian<NonZeroU16>> for NonZeroU16
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
impl BitOr<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU16>> for &NativeEndian<NonZeroU16>
impl BitOr<NativeEndian<NonZeroU16>> for &NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU16>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU32>> for NonZeroU32
impl BitOr<NativeEndian<NonZeroU32>> for NonZeroU32
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
impl BitOr<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU32>> for &NativeEndian<NonZeroU32>
impl BitOr<NativeEndian<NonZeroU32>> for &NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU32>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU64>> for NonZeroU64
impl BitOr<NativeEndian<NonZeroU64>> for NonZeroU64
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
impl BitOr<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<NonZeroU64>> for &NativeEndian<NonZeroU64>
impl BitOr<NativeEndian<NonZeroU64>> for &NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
fn bitor(self, other: NativeEndian<NonZeroU64>) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NativeEndian<i128>> for i128
impl BitOr<NativeEndian<i128>> for i128
sourceimpl BitOr<NativeEndian<i128>> for &i128
impl BitOr<NativeEndian<i128>> for &i128
sourceimpl BitOr<NativeEndian<i128>> for NativeEndian<i128>
impl BitOr<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitOr<NativeEndian<i128>> for &NativeEndian<i128>
impl BitOr<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitOr<NativeEndian<i16>> for i16
impl BitOr<NativeEndian<i16>> for i16
sourceimpl BitOr<NativeEndian<i16>> for &i16
impl BitOr<NativeEndian<i16>> for &i16
sourceimpl BitOr<NativeEndian<i16>> for NativeEndian<i16>
impl BitOr<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitOr<NativeEndian<i16>> for &NativeEndian<i16>
impl BitOr<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitOr<NativeEndian<i32>> for i32
impl BitOr<NativeEndian<i32>> for i32
sourceimpl BitOr<NativeEndian<i32>> for &i32
impl BitOr<NativeEndian<i32>> for &i32
sourceimpl BitOr<NativeEndian<i32>> for NativeEndian<i32>
impl BitOr<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitOr<NativeEndian<i32>> for &NativeEndian<i32>
impl BitOr<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitOr<NativeEndian<i64>> for i64
impl BitOr<NativeEndian<i64>> for i64
sourceimpl BitOr<NativeEndian<i64>> for &i64
impl BitOr<NativeEndian<i64>> for &i64
sourceimpl BitOr<NativeEndian<i64>> for NativeEndian<i64>
impl BitOr<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitOr<NativeEndian<i64>> for &NativeEndian<i64>
impl BitOr<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitOr<NativeEndian<u128>> for u128
impl BitOr<NativeEndian<u128>> for u128
sourceimpl BitOr<NativeEndian<u128>> for &u128
impl BitOr<NativeEndian<u128>> for &u128
sourceimpl BitOr<NativeEndian<u128>> for NativeEndian<u128>
impl BitOr<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitOr<NativeEndian<u128>> for &NativeEndian<u128>
impl BitOr<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitOr<NativeEndian<u16>> for u16
impl BitOr<NativeEndian<u16>> for u16
sourceimpl BitOr<NativeEndian<u16>> for &u16
impl BitOr<NativeEndian<u16>> for &u16
sourceimpl BitOr<NativeEndian<u16>> for NativeEndian<u16>
impl BitOr<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitOr<NativeEndian<u16>> for &NativeEndian<u16>
impl BitOr<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitOr<NativeEndian<u32>> for u32
impl BitOr<NativeEndian<u32>> for u32
sourceimpl BitOr<NativeEndian<u32>> for &u32
impl BitOr<NativeEndian<u32>> for &u32
sourceimpl BitOr<NativeEndian<u32>> for NativeEndian<u32>
impl BitOr<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitOr<NativeEndian<u32>> for &NativeEndian<u32>
impl BitOr<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitOr<NativeEndian<u64>> for u64
impl BitOr<NativeEndian<u64>> for u64
sourceimpl BitOr<NativeEndian<u64>> for &u64
impl BitOr<NativeEndian<u64>> for &u64
sourceimpl BitOr<NativeEndian<u64>> for NativeEndian<u64>
impl BitOr<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitOr<NativeEndian<u64>> for &NativeEndian<u64>
impl BitOr<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitOr<NonZeroI128> for NativeEndian<NonZeroI128>
impl BitOr<NonZeroI128> for NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI128) -> Self::Output
fn bitor(self, other: NonZeroI128) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI128> for &NativeEndian<NonZeroI128>
impl BitOr<NonZeroI128> for &NativeEndian<NonZeroI128>
type Output = NonZeroI128
type Output = NonZeroI128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI128) -> Self::Output
fn bitor(self, other: NonZeroI128) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI16> for NativeEndian<NonZeroI16>
impl BitOr<NonZeroI16> for NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI16) -> Self::Output
fn bitor(self, other: NonZeroI16) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI16> for &NativeEndian<NonZeroI16>
impl BitOr<NonZeroI16> for &NativeEndian<NonZeroI16>
type Output = NonZeroI16
type Output = NonZeroI16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI16) -> Self::Output
fn bitor(self, other: NonZeroI16) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI32> for NativeEndian<NonZeroI32>
impl BitOr<NonZeroI32> for NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI32) -> Self::Output
fn bitor(self, other: NonZeroI32) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI32> for &NativeEndian<NonZeroI32>
impl BitOr<NonZeroI32> for &NativeEndian<NonZeroI32>
type Output = NonZeroI32
type Output = NonZeroI32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI32) -> Self::Output
fn bitor(self, other: NonZeroI32) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI64> for NativeEndian<NonZeroI64>
impl BitOr<NonZeroI64> for NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI64) -> Self::Output
fn bitor(self, other: NonZeroI64) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroI64> for &NativeEndian<NonZeroI64>
impl BitOr<NonZeroI64> for &NativeEndian<NonZeroI64>
type Output = NonZeroI64
type Output = NonZeroI64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroI64) -> Self::Output
fn bitor(self, other: NonZeroI64) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU128> for NativeEndian<NonZeroU128>
impl BitOr<NonZeroU128> for NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU128) -> Self::Output
fn bitor(self, other: NonZeroU128) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU128> for &NativeEndian<NonZeroU128>
impl BitOr<NonZeroU128> for &NativeEndian<NonZeroU128>
type Output = NonZeroU128
type Output = NonZeroU128
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU128) -> Self::Output
fn bitor(self, other: NonZeroU128) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU16> for NativeEndian<NonZeroU16>
impl BitOr<NonZeroU16> for NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU16) -> Self::Output
fn bitor(self, other: NonZeroU16) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU16> for &NativeEndian<NonZeroU16>
impl BitOr<NonZeroU16> for &NativeEndian<NonZeroU16>
type Output = NonZeroU16
type Output = NonZeroU16
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU16) -> Self::Output
fn bitor(self, other: NonZeroU16) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU32> for NativeEndian<NonZeroU32>
impl BitOr<NonZeroU32> for NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU32) -> Self::Output
fn bitor(self, other: NonZeroU32) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU32> for &NativeEndian<NonZeroU32>
impl BitOr<NonZeroU32> for &NativeEndian<NonZeroU32>
type Output = NonZeroU32
type Output = NonZeroU32
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU32) -> Self::Output
fn bitor(self, other: NonZeroU32) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU64> for NativeEndian<NonZeroU64>
impl BitOr<NonZeroU64> for NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU64) -> Self::Output
fn bitor(self, other: NonZeroU64) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<NonZeroU64> for &NativeEndian<NonZeroU64>
impl BitOr<NonZeroU64> for &NativeEndian<NonZeroU64>
type Output = NonZeroU64
type Output = NonZeroU64
The resulting type after applying the |
operator.
sourcefn bitor(self, other: NonZeroU64) -> Self::Output
fn bitor(self, other: NonZeroU64) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<i128> for NativeEndian<i128>
impl BitOr<i128> for NativeEndian<i128>
sourceimpl BitOr<i128> for &NativeEndian<i128>
impl BitOr<i128> for &NativeEndian<i128>
sourceimpl BitOr<i16> for NativeEndian<i16>
impl BitOr<i16> for NativeEndian<i16>
sourceimpl BitOr<i16> for &NativeEndian<i16>
impl BitOr<i16> for &NativeEndian<i16>
sourceimpl BitOr<i32> for NativeEndian<i32>
impl BitOr<i32> for NativeEndian<i32>
sourceimpl BitOr<i32> for &NativeEndian<i32>
impl BitOr<i32> for &NativeEndian<i32>
sourceimpl BitOr<i64> for NativeEndian<i64>
impl BitOr<i64> for NativeEndian<i64>
sourceimpl BitOr<i64> for &NativeEndian<i64>
impl BitOr<i64> for &NativeEndian<i64>
sourceimpl BitOr<u128> for NativeEndian<u128>
impl BitOr<u128> for NativeEndian<u128>
sourceimpl BitOr<u128> for &NativeEndian<u128>
impl BitOr<u128> for &NativeEndian<u128>
sourceimpl BitOr<u16> for NativeEndian<u16>
impl BitOr<u16> for NativeEndian<u16>
sourceimpl BitOr<u16> for &NativeEndian<u16>
impl BitOr<u16> for &NativeEndian<u16>
sourceimpl BitOr<u32> for NativeEndian<u32>
impl BitOr<u32> for NativeEndian<u32>
sourceimpl BitOr<u32> for &NativeEndian<u32>
impl BitOr<u32> for &NativeEndian<u32>
sourceimpl BitOr<u64> for NativeEndian<u64>
impl BitOr<u64> for NativeEndian<u64>
sourceimpl BitOr<u64> for &NativeEndian<u64>
impl BitOr<u64> for &NativeEndian<u64>
sourceimpl BitOrAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitOrAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitor_assign(&mut self, other: &NativeEndian<i128>)
fn bitor_assign(&mut self, other: &NativeEndian<i128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitOrAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitor_assign(&mut self, other: &NativeEndian<i16>)
fn bitor_assign(&mut self, other: &NativeEndian<i16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitOrAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitor_assign(&mut self, other: &NativeEndian<i32>)
fn bitor_assign(&mut self, other: &NativeEndian<i32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitOrAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitor_assign(&mut self, other: &NativeEndian<i64>)
fn bitor_assign(&mut self, other: &NativeEndian<i64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitOrAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitor_assign(&mut self, other: &NativeEndian<u128>)
fn bitor_assign(&mut self, other: &NativeEndian<u128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitOrAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitor_assign(&mut self, other: &NativeEndian<u16>)
fn bitor_assign(&mut self, other: &NativeEndian<u16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitOrAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitor_assign(&mut self, other: &NativeEndian<u32>)
fn bitor_assign(&mut self, other: &NativeEndian<u32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitOrAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitor_assign(&mut self, other: &NativeEndian<u64>)
fn bitor_assign(&mut self, other: &NativeEndian<u64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ i128> for NativeEndian<i128>
impl BitOrAssign<&'_ i128> for NativeEndian<i128>
sourcefn bitor_assign(&mut self, other: &i128)
fn bitor_assign(&mut self, other: &i128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ i16> for NativeEndian<i16>
impl BitOrAssign<&'_ i16> for NativeEndian<i16>
sourcefn bitor_assign(&mut self, other: &i16)
fn bitor_assign(&mut self, other: &i16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ i32> for NativeEndian<i32>
impl BitOrAssign<&'_ i32> for NativeEndian<i32>
sourcefn bitor_assign(&mut self, other: &i32)
fn bitor_assign(&mut self, other: &i32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ i64> for NativeEndian<i64>
impl BitOrAssign<&'_ i64> for NativeEndian<i64>
sourcefn bitor_assign(&mut self, other: &i64)
fn bitor_assign(&mut self, other: &i64)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ u128> for NativeEndian<u128>
impl BitOrAssign<&'_ u128> for NativeEndian<u128>
sourcefn bitor_assign(&mut self, other: &u128)
fn bitor_assign(&mut self, other: &u128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ u16> for NativeEndian<u16>
impl BitOrAssign<&'_ u16> for NativeEndian<u16>
sourcefn bitor_assign(&mut self, other: &u16)
fn bitor_assign(&mut self, other: &u16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ u32> for NativeEndian<u32>
impl BitOrAssign<&'_ u32> for NativeEndian<u32>
sourcefn bitor_assign(&mut self, other: &u32)
fn bitor_assign(&mut self, other: &u32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<&'_ u64> for NativeEndian<u64>
impl BitOrAssign<&'_ u64> for NativeEndian<u64>
sourcefn bitor_assign(&mut self, other: &u64)
fn bitor_assign(&mut self, other: &u64)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
impl BitOrAssign<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroI128>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroI128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
impl BitOrAssign<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroI16>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroI16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
impl BitOrAssign<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroI32>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroI32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
impl BitOrAssign<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroI64>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroI64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
impl BitOrAssign<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroU128>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroU128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
impl BitOrAssign<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroU16>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroU16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
impl BitOrAssign<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroU32>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroU32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
impl BitOrAssign<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
sourcefn bitor_assign(&mut self, other: NativeEndian<NonZeroU64>)
fn bitor_assign(&mut self, other: NativeEndian<NonZeroU64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<i128>> for NativeEndian<i128>
impl BitOrAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitor_assign(&mut self, other: NativeEndian<i128>)
fn bitor_assign(&mut self, other: NativeEndian<i128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<i16>> for NativeEndian<i16>
impl BitOrAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitor_assign(&mut self, other: NativeEndian<i16>)
fn bitor_assign(&mut self, other: NativeEndian<i16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<i32>> for NativeEndian<i32>
impl BitOrAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitor_assign(&mut self, other: NativeEndian<i32>)
fn bitor_assign(&mut self, other: NativeEndian<i32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<i64>> for NativeEndian<i64>
impl BitOrAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitor_assign(&mut self, other: NativeEndian<i64>)
fn bitor_assign(&mut self, other: NativeEndian<i64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<u128>> for NativeEndian<u128>
impl BitOrAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitor_assign(&mut self, other: NativeEndian<u128>)
fn bitor_assign(&mut self, other: NativeEndian<u128>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<u16>> for NativeEndian<u16>
impl BitOrAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitor_assign(&mut self, other: NativeEndian<u16>)
fn bitor_assign(&mut self, other: NativeEndian<u16>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<u32>> for NativeEndian<u32>
impl BitOrAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitor_assign(&mut self, other: NativeEndian<u32>)
fn bitor_assign(&mut self, other: NativeEndian<u32>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NativeEndian<u64>> for NativeEndian<u64>
impl BitOrAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitor_assign(&mut self, other: NativeEndian<u64>)
fn bitor_assign(&mut self, other: NativeEndian<u64>)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroI128> for NativeEndian<NonZeroI128>
impl BitOrAssign<NonZeroI128> for NativeEndian<NonZeroI128>
sourcefn bitor_assign(&mut self, other: NonZeroI128)
fn bitor_assign(&mut self, other: NonZeroI128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroI16> for NativeEndian<NonZeroI16>
impl BitOrAssign<NonZeroI16> for NativeEndian<NonZeroI16>
sourcefn bitor_assign(&mut self, other: NonZeroI16)
fn bitor_assign(&mut self, other: NonZeroI16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroI32> for NativeEndian<NonZeroI32>
impl BitOrAssign<NonZeroI32> for NativeEndian<NonZeroI32>
sourcefn bitor_assign(&mut self, other: NonZeroI32)
fn bitor_assign(&mut self, other: NonZeroI32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroI64> for NativeEndian<NonZeroI64>
impl BitOrAssign<NonZeroI64> for NativeEndian<NonZeroI64>
sourcefn bitor_assign(&mut self, other: NonZeroI64)
fn bitor_assign(&mut self, other: NonZeroI64)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroU128> for NativeEndian<NonZeroU128>
impl BitOrAssign<NonZeroU128> for NativeEndian<NonZeroU128>
sourcefn bitor_assign(&mut self, other: NonZeroU128)
fn bitor_assign(&mut self, other: NonZeroU128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroU16> for NativeEndian<NonZeroU16>
impl BitOrAssign<NonZeroU16> for NativeEndian<NonZeroU16>
sourcefn bitor_assign(&mut self, other: NonZeroU16)
fn bitor_assign(&mut self, other: NonZeroU16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroU32> for NativeEndian<NonZeroU32>
impl BitOrAssign<NonZeroU32> for NativeEndian<NonZeroU32>
sourcefn bitor_assign(&mut self, other: NonZeroU32)
fn bitor_assign(&mut self, other: NonZeroU32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<NonZeroU64> for NativeEndian<NonZeroU64>
impl BitOrAssign<NonZeroU64> for NativeEndian<NonZeroU64>
sourcefn bitor_assign(&mut self, other: NonZeroU64)
fn bitor_assign(&mut self, other: NonZeroU64)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<i128> for NativeEndian<i128>
impl BitOrAssign<i128> for NativeEndian<i128>
sourcefn bitor_assign(&mut self, other: i128)
fn bitor_assign(&mut self, other: i128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<i16> for NativeEndian<i16>
impl BitOrAssign<i16> for NativeEndian<i16>
sourcefn bitor_assign(&mut self, other: i16)
fn bitor_assign(&mut self, other: i16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<i32> for NativeEndian<i32>
impl BitOrAssign<i32> for NativeEndian<i32>
sourcefn bitor_assign(&mut self, other: i32)
fn bitor_assign(&mut self, other: i32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<i64> for NativeEndian<i64>
impl BitOrAssign<i64> for NativeEndian<i64>
sourcefn bitor_assign(&mut self, other: i64)
fn bitor_assign(&mut self, other: i64)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<u128> for NativeEndian<u128>
impl BitOrAssign<u128> for NativeEndian<u128>
sourcefn bitor_assign(&mut self, other: u128)
fn bitor_assign(&mut self, other: u128)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<u16> for NativeEndian<u16>
impl BitOrAssign<u16> for NativeEndian<u16>
sourcefn bitor_assign(&mut self, other: u16)
fn bitor_assign(&mut self, other: u16)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<u32> for NativeEndian<u32>
impl BitOrAssign<u32> for NativeEndian<u32>
sourcefn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<u64> for NativeEndian<u64>
impl BitOrAssign<u64> for NativeEndian<u64>
sourcefn bitor_assign(&mut self, other: u64)
fn bitor_assign(&mut self, other: u64)
Performs the |=
operation. Read more
sourceimpl BitXor<&'_ NativeEndian<i128>> for i128
impl BitXor<&'_ NativeEndian<i128>> for i128
sourceimpl BitXor<&'_ NativeEndian<i128>> for &i128
impl BitXor<&'_ NativeEndian<i128>> for &i128
sourceimpl BitXor<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitXor<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitXor<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl BitXor<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitXor<&'_ NativeEndian<i16>> for i16
impl BitXor<&'_ NativeEndian<i16>> for i16
sourceimpl BitXor<&'_ NativeEndian<i16>> for &i16
impl BitXor<&'_ NativeEndian<i16>> for &i16
sourceimpl BitXor<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitXor<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitXor<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl BitXor<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitXor<&'_ NativeEndian<i32>> for i32
impl BitXor<&'_ NativeEndian<i32>> for i32
sourceimpl BitXor<&'_ NativeEndian<i32>> for &i32
impl BitXor<&'_ NativeEndian<i32>> for &i32
sourceimpl BitXor<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitXor<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitXor<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl BitXor<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitXor<&'_ NativeEndian<i64>> for i64
impl BitXor<&'_ NativeEndian<i64>> for i64
sourceimpl BitXor<&'_ NativeEndian<i64>> for &i64
impl BitXor<&'_ NativeEndian<i64>> for &i64
sourceimpl BitXor<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitXor<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitXor<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl BitXor<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitXor<&'_ NativeEndian<u128>> for u128
impl BitXor<&'_ NativeEndian<u128>> for u128
sourceimpl BitXor<&'_ NativeEndian<u128>> for &u128
impl BitXor<&'_ NativeEndian<u128>> for &u128
sourceimpl BitXor<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitXor<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitXor<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl BitXor<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitXor<&'_ NativeEndian<u16>> for u16
impl BitXor<&'_ NativeEndian<u16>> for u16
sourceimpl BitXor<&'_ NativeEndian<u16>> for &u16
impl BitXor<&'_ NativeEndian<u16>> for &u16
sourceimpl BitXor<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitXor<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitXor<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl BitXor<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitXor<&'_ NativeEndian<u32>> for u32
impl BitXor<&'_ NativeEndian<u32>> for u32
sourceimpl BitXor<&'_ NativeEndian<u32>> for &u32
impl BitXor<&'_ NativeEndian<u32>> for &u32
sourceimpl BitXor<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitXor<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitXor<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl BitXor<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitXor<&'_ NativeEndian<u64>> for u64
impl BitXor<&'_ NativeEndian<u64>> for u64
sourceimpl BitXor<&'_ NativeEndian<u64>> for &u64
impl BitXor<&'_ NativeEndian<u64>> for &u64
sourceimpl BitXor<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitXor<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitXor<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl BitXor<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitXor<&'_ i128> for NativeEndian<i128>
impl BitXor<&'_ i128> for NativeEndian<i128>
sourceimpl BitXor<&'_ i128> for &NativeEndian<i128>
impl BitXor<&'_ i128> for &NativeEndian<i128>
sourceimpl BitXor<&'_ i16> for NativeEndian<i16>
impl BitXor<&'_ i16> for NativeEndian<i16>
sourceimpl BitXor<&'_ i16> for &NativeEndian<i16>
impl BitXor<&'_ i16> for &NativeEndian<i16>
sourceimpl BitXor<&'_ i32> for NativeEndian<i32>
impl BitXor<&'_ i32> for NativeEndian<i32>
sourceimpl BitXor<&'_ i32> for &NativeEndian<i32>
impl BitXor<&'_ i32> for &NativeEndian<i32>
sourceimpl BitXor<&'_ i64> for NativeEndian<i64>
impl BitXor<&'_ i64> for NativeEndian<i64>
sourceimpl BitXor<&'_ i64> for &NativeEndian<i64>
impl BitXor<&'_ i64> for &NativeEndian<i64>
sourceimpl BitXor<&'_ u128> for NativeEndian<u128>
impl BitXor<&'_ u128> for NativeEndian<u128>
sourceimpl BitXor<&'_ u128> for &NativeEndian<u128>
impl BitXor<&'_ u128> for &NativeEndian<u128>
sourceimpl BitXor<&'_ u16> for NativeEndian<u16>
impl BitXor<&'_ u16> for NativeEndian<u16>
sourceimpl BitXor<&'_ u16> for &NativeEndian<u16>
impl BitXor<&'_ u16> for &NativeEndian<u16>
sourceimpl BitXor<&'_ u32> for NativeEndian<u32>
impl BitXor<&'_ u32> for NativeEndian<u32>
sourceimpl BitXor<&'_ u32> for &NativeEndian<u32>
impl BitXor<&'_ u32> for &NativeEndian<u32>
sourceimpl BitXor<&'_ u64> for NativeEndian<u64>
impl BitXor<&'_ u64> for NativeEndian<u64>
sourceimpl BitXor<&'_ u64> for &NativeEndian<u64>
impl BitXor<&'_ u64> for &NativeEndian<u64>
sourceimpl BitXor<NativeEndian<i128>> for i128
impl BitXor<NativeEndian<i128>> for i128
sourceimpl BitXor<NativeEndian<i128>> for &i128
impl BitXor<NativeEndian<i128>> for &i128
sourceimpl BitXor<NativeEndian<i128>> for NativeEndian<i128>
impl BitXor<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl BitXor<NativeEndian<i128>> for &NativeEndian<i128>
impl BitXor<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl BitXor<NativeEndian<i16>> for i16
impl BitXor<NativeEndian<i16>> for i16
sourceimpl BitXor<NativeEndian<i16>> for &i16
impl BitXor<NativeEndian<i16>> for &i16
sourceimpl BitXor<NativeEndian<i16>> for NativeEndian<i16>
impl BitXor<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl BitXor<NativeEndian<i16>> for &NativeEndian<i16>
impl BitXor<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl BitXor<NativeEndian<i32>> for i32
impl BitXor<NativeEndian<i32>> for i32
sourceimpl BitXor<NativeEndian<i32>> for &i32
impl BitXor<NativeEndian<i32>> for &i32
sourceimpl BitXor<NativeEndian<i32>> for NativeEndian<i32>
impl BitXor<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl BitXor<NativeEndian<i32>> for &NativeEndian<i32>
impl BitXor<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl BitXor<NativeEndian<i64>> for i64
impl BitXor<NativeEndian<i64>> for i64
sourceimpl BitXor<NativeEndian<i64>> for &i64
impl BitXor<NativeEndian<i64>> for &i64
sourceimpl BitXor<NativeEndian<i64>> for NativeEndian<i64>
impl BitXor<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl BitXor<NativeEndian<i64>> for &NativeEndian<i64>
impl BitXor<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl BitXor<NativeEndian<u128>> for u128
impl BitXor<NativeEndian<u128>> for u128
sourceimpl BitXor<NativeEndian<u128>> for &u128
impl BitXor<NativeEndian<u128>> for &u128
sourceimpl BitXor<NativeEndian<u128>> for NativeEndian<u128>
impl BitXor<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl BitXor<NativeEndian<u128>> for &NativeEndian<u128>
impl BitXor<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl BitXor<NativeEndian<u16>> for u16
impl BitXor<NativeEndian<u16>> for u16
sourceimpl BitXor<NativeEndian<u16>> for &u16
impl BitXor<NativeEndian<u16>> for &u16
sourceimpl BitXor<NativeEndian<u16>> for NativeEndian<u16>
impl BitXor<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl BitXor<NativeEndian<u16>> for &NativeEndian<u16>
impl BitXor<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl BitXor<NativeEndian<u32>> for u32
impl BitXor<NativeEndian<u32>> for u32
sourceimpl BitXor<NativeEndian<u32>> for &u32
impl BitXor<NativeEndian<u32>> for &u32
sourceimpl BitXor<NativeEndian<u32>> for NativeEndian<u32>
impl BitXor<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl BitXor<NativeEndian<u32>> for &NativeEndian<u32>
impl BitXor<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl BitXor<NativeEndian<u64>> for u64
impl BitXor<NativeEndian<u64>> for u64
sourceimpl BitXor<NativeEndian<u64>> for &u64
impl BitXor<NativeEndian<u64>> for &u64
sourceimpl BitXor<NativeEndian<u64>> for NativeEndian<u64>
impl BitXor<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl BitXor<NativeEndian<u64>> for &NativeEndian<u64>
impl BitXor<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl BitXor<i128> for NativeEndian<i128>
impl BitXor<i128> for NativeEndian<i128>
sourceimpl BitXor<i128> for &NativeEndian<i128>
impl BitXor<i128> for &NativeEndian<i128>
sourceimpl BitXor<i16> for NativeEndian<i16>
impl BitXor<i16> for NativeEndian<i16>
sourceimpl BitXor<i16> for &NativeEndian<i16>
impl BitXor<i16> for &NativeEndian<i16>
sourceimpl BitXor<i32> for NativeEndian<i32>
impl BitXor<i32> for NativeEndian<i32>
sourceimpl BitXor<i32> for &NativeEndian<i32>
impl BitXor<i32> for &NativeEndian<i32>
sourceimpl BitXor<i64> for NativeEndian<i64>
impl BitXor<i64> for NativeEndian<i64>
sourceimpl BitXor<i64> for &NativeEndian<i64>
impl BitXor<i64> for &NativeEndian<i64>
sourceimpl BitXor<u128> for NativeEndian<u128>
impl BitXor<u128> for NativeEndian<u128>
sourceimpl BitXor<u128> for &NativeEndian<u128>
impl BitXor<u128> for &NativeEndian<u128>
sourceimpl BitXor<u16> for NativeEndian<u16>
impl BitXor<u16> for NativeEndian<u16>
sourceimpl BitXor<u16> for &NativeEndian<u16>
impl BitXor<u16> for &NativeEndian<u16>
sourceimpl BitXor<u32> for NativeEndian<u32>
impl BitXor<u32> for NativeEndian<u32>
sourceimpl BitXor<u32> for &NativeEndian<u32>
impl BitXor<u32> for &NativeEndian<u32>
sourceimpl BitXor<u64> for NativeEndian<u64>
impl BitXor<u64> for NativeEndian<u64>
sourceimpl BitXor<u64> for &NativeEndian<u64>
impl BitXor<u64> for &NativeEndian<u64>
sourceimpl BitXorAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl BitXorAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<i128>)
fn bitxor_assign(&mut self, other: &NativeEndian<i128>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl BitXorAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<i16>)
fn bitxor_assign(&mut self, other: &NativeEndian<i16>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl BitXorAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<i32>)
fn bitxor_assign(&mut self, other: &NativeEndian<i32>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl BitXorAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<i64>)
fn bitxor_assign(&mut self, other: &NativeEndian<i64>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl BitXorAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<u128>)
fn bitxor_assign(&mut self, other: &NativeEndian<u128>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl BitXorAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<u16>)
fn bitxor_assign(&mut self, other: &NativeEndian<u16>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl BitXorAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<u32>)
fn bitxor_assign(&mut self, other: &NativeEndian<u32>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl BitXorAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitxor_assign(&mut self, other: &NativeEndian<u64>)
fn bitxor_assign(&mut self, other: &NativeEndian<u64>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ i128> for NativeEndian<i128>
impl BitXorAssign<&'_ i128> for NativeEndian<i128>
sourcefn bitxor_assign(&mut self, other: &i128)
fn bitxor_assign(&mut self, other: &i128)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ i16> for NativeEndian<i16>
impl BitXorAssign<&'_ i16> for NativeEndian<i16>
sourcefn bitxor_assign(&mut self, other: &i16)
fn bitxor_assign(&mut self, other: &i16)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ i32> for NativeEndian<i32>
impl BitXorAssign<&'_ i32> for NativeEndian<i32>
sourcefn bitxor_assign(&mut self, other: &i32)
fn bitxor_assign(&mut self, other: &i32)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ i64> for NativeEndian<i64>
impl BitXorAssign<&'_ i64> for NativeEndian<i64>
sourcefn bitxor_assign(&mut self, other: &i64)
fn bitxor_assign(&mut self, other: &i64)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ u128> for NativeEndian<u128>
impl BitXorAssign<&'_ u128> for NativeEndian<u128>
sourcefn bitxor_assign(&mut self, other: &u128)
fn bitxor_assign(&mut self, other: &u128)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ u16> for NativeEndian<u16>
impl BitXorAssign<&'_ u16> for NativeEndian<u16>
sourcefn bitxor_assign(&mut self, other: &u16)
fn bitxor_assign(&mut self, other: &u16)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ u32> for NativeEndian<u32>
impl BitXorAssign<&'_ u32> for NativeEndian<u32>
sourcefn bitxor_assign(&mut self, other: &u32)
fn bitxor_assign(&mut self, other: &u32)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<&'_ u64> for NativeEndian<u64>
impl BitXorAssign<&'_ u64> for NativeEndian<u64>
sourcefn bitxor_assign(&mut self, other: &u64)
fn bitxor_assign(&mut self, other: &u64)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<i128>> for NativeEndian<i128>
impl BitXorAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn bitxor_assign(&mut self, other: NativeEndian<i128>)
fn bitxor_assign(&mut self, other: NativeEndian<i128>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<i16>> for NativeEndian<i16>
impl BitXorAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn bitxor_assign(&mut self, other: NativeEndian<i16>)
fn bitxor_assign(&mut self, other: NativeEndian<i16>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<i32>> for NativeEndian<i32>
impl BitXorAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn bitxor_assign(&mut self, other: NativeEndian<i32>)
fn bitxor_assign(&mut self, other: NativeEndian<i32>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<i64>> for NativeEndian<i64>
impl BitXorAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn bitxor_assign(&mut self, other: NativeEndian<i64>)
fn bitxor_assign(&mut self, other: NativeEndian<i64>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<u128>> for NativeEndian<u128>
impl BitXorAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn bitxor_assign(&mut self, other: NativeEndian<u128>)
fn bitxor_assign(&mut self, other: NativeEndian<u128>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<u16>> for NativeEndian<u16>
impl BitXorAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn bitxor_assign(&mut self, other: NativeEndian<u16>)
fn bitxor_assign(&mut self, other: NativeEndian<u16>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<u32>> for NativeEndian<u32>
impl BitXorAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn bitxor_assign(&mut self, other: NativeEndian<u32>)
fn bitxor_assign(&mut self, other: NativeEndian<u32>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<NativeEndian<u64>> for NativeEndian<u64>
impl BitXorAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn bitxor_assign(&mut self, other: NativeEndian<u64>)
fn bitxor_assign(&mut self, other: NativeEndian<u64>)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<i128> for NativeEndian<i128>
impl BitXorAssign<i128> for NativeEndian<i128>
sourcefn bitxor_assign(&mut self, other: i128)
fn bitxor_assign(&mut self, other: i128)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<i16> for NativeEndian<i16>
impl BitXorAssign<i16> for NativeEndian<i16>
sourcefn bitxor_assign(&mut self, other: i16)
fn bitxor_assign(&mut self, other: i16)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<i32> for NativeEndian<i32>
impl BitXorAssign<i32> for NativeEndian<i32>
sourcefn bitxor_assign(&mut self, other: i32)
fn bitxor_assign(&mut self, other: i32)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<i64> for NativeEndian<i64>
impl BitXorAssign<i64> for NativeEndian<i64>
sourcefn bitxor_assign(&mut self, other: i64)
fn bitxor_assign(&mut self, other: i64)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<u128> for NativeEndian<u128>
impl BitXorAssign<u128> for NativeEndian<u128>
sourcefn bitxor_assign(&mut self, other: u128)
fn bitxor_assign(&mut self, other: u128)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<u16> for NativeEndian<u16>
impl BitXorAssign<u16> for NativeEndian<u16>
sourcefn bitxor_assign(&mut self, other: u16)
fn bitxor_assign(&mut self, other: u16)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<u32> for NativeEndian<u32>
impl BitXorAssign<u32> for NativeEndian<u32>
sourcefn bitxor_assign(&mut self, other: u32)
fn bitxor_assign(&mut self, other: u32)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<u64> for NativeEndian<u64>
impl BitXorAssign<u64> for NativeEndian<u64>
sourcefn bitxor_assign(&mut self, other: u64)
fn bitxor_assign(&mut self, other: u64)
Performs the ^=
operation. Read more
sourceimpl<T: Clone> Clone for NativeEndian<T>
impl<T: Clone> Clone for NativeEndian<T>
sourcefn clone(&self) -> NativeEndian<T>
fn clone(&self) -> NativeEndian<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NativeEndian<i16>
impl Debug for NativeEndian<i16>
sourceimpl Debug for NativeEndian<i32>
impl Debug for NativeEndian<i32>
sourceimpl Debug for NativeEndian<char>
impl Debug for NativeEndian<char>
sourceimpl Debug for NativeEndian<NonZeroI16>
impl Debug for NativeEndian<NonZeroI16>
sourceimpl Debug for NativeEndian<NonZeroI32>
impl Debug for NativeEndian<NonZeroI32>
sourceimpl Debug for NativeEndian<NonZeroI64>
impl Debug for NativeEndian<NonZeroI64>
sourceimpl Debug for NativeEndian<NonZeroI128>
impl Debug for NativeEndian<NonZeroI128>
sourceimpl Debug for NativeEndian<NonZeroU16>
impl Debug for NativeEndian<NonZeroU16>
sourceimpl Debug for NativeEndian<NonZeroU32>
impl Debug for NativeEndian<NonZeroU32>
sourceimpl Debug for NativeEndian<NonZeroU64>
impl Debug for NativeEndian<NonZeroU64>
sourceimpl Debug for NativeEndian<NonZeroU128>
impl Debug for NativeEndian<NonZeroU128>
sourceimpl Debug for NativeEndian<AtomicI16>
impl Debug for NativeEndian<AtomicI16>
sourceimpl Debug for NativeEndian<i64>
impl Debug for NativeEndian<i64>
sourceimpl Debug for NativeEndian<AtomicI32>
impl Debug for NativeEndian<AtomicI32>
sourceimpl Debug for NativeEndian<AtomicI64>
impl Debug for NativeEndian<AtomicI64>
sourceimpl Debug for NativeEndian<AtomicU16>
impl Debug for NativeEndian<AtomicU16>
sourceimpl Debug for NativeEndian<AtomicU32>
impl Debug for NativeEndian<AtomicU32>
sourceimpl Debug for NativeEndian<AtomicU64>
impl Debug for NativeEndian<AtomicU64>
sourceimpl Debug for NativeEndian<i128>
impl Debug for NativeEndian<i128>
sourceimpl Debug for NativeEndian<u16>
impl Debug for NativeEndian<u16>
sourceimpl Debug for NativeEndian<u32>
impl Debug for NativeEndian<u32>
sourceimpl Debug for NativeEndian<u64>
impl Debug for NativeEndian<u64>
sourceimpl Debug for NativeEndian<u128>
impl Debug for NativeEndian<u128>
sourceimpl Debug for NativeEndian<f32>
impl Debug for NativeEndian<f32>
sourceimpl Debug for NativeEndian<f64>
impl Debug for NativeEndian<f64>
sourceimpl Default for NativeEndian<i16>
impl Default for NativeEndian<i16>
sourceimpl Default for NativeEndian<i32>
impl Default for NativeEndian<i32>
sourceimpl Default for NativeEndian<char>
impl Default for NativeEndian<char>
sourceimpl Default for NativeEndian<AtomicI16>
impl Default for NativeEndian<AtomicI16>
sourceimpl Default for NativeEndian<AtomicI32>
impl Default for NativeEndian<AtomicI32>
sourceimpl Default for NativeEndian<AtomicI64>
impl Default for NativeEndian<AtomicI64>
sourceimpl Default for NativeEndian<AtomicU16>
impl Default for NativeEndian<AtomicU16>
sourceimpl Default for NativeEndian<AtomicU32>
impl Default for NativeEndian<AtomicU32>
sourceimpl Default for NativeEndian<AtomicU64>
impl Default for NativeEndian<AtomicU64>
sourceimpl Default for NativeEndian<i64>
impl Default for NativeEndian<i64>
sourceimpl Default for NativeEndian<i128>
impl Default for NativeEndian<i128>
sourceimpl Default for NativeEndian<u16>
impl Default for NativeEndian<u16>
sourceimpl Default for NativeEndian<u32>
impl Default for NativeEndian<u32>
sourceimpl Default for NativeEndian<u64>
impl Default for NativeEndian<u64>
sourceimpl Default for NativeEndian<u128>
impl Default for NativeEndian<u128>
sourceimpl Default for NativeEndian<f32>
impl Default for NativeEndian<f32>
sourceimpl Default for NativeEndian<f64>
impl Default for NativeEndian<f64>
sourceimpl Display for NativeEndian<i16>
impl Display for NativeEndian<i16>
sourceimpl Display for NativeEndian<i32>
impl Display for NativeEndian<i32>
sourceimpl Display for NativeEndian<char>
impl Display for NativeEndian<char>
sourceimpl Display for NativeEndian<NonZeroI16>
impl Display for NativeEndian<NonZeroI16>
sourceimpl Display for NativeEndian<NonZeroI32>
impl Display for NativeEndian<NonZeroI32>
sourceimpl Display for NativeEndian<NonZeroI64>
impl Display for NativeEndian<NonZeroI64>
sourceimpl Display for NativeEndian<NonZeroI128>
impl Display for NativeEndian<NonZeroI128>
sourceimpl Display for NativeEndian<NonZeroU16>
impl Display for NativeEndian<NonZeroU16>
sourceimpl Display for NativeEndian<NonZeroU32>
impl Display for NativeEndian<NonZeroU32>
sourceimpl Display for NativeEndian<NonZeroU64>
impl Display for NativeEndian<NonZeroU64>
sourceimpl Display for NativeEndian<NonZeroU128>
impl Display for NativeEndian<NonZeroU128>
sourceimpl Display for NativeEndian<i64>
impl Display for NativeEndian<i64>
sourceimpl Display for NativeEndian<i128>
impl Display for NativeEndian<i128>
sourceimpl Display for NativeEndian<u16>
impl Display for NativeEndian<u16>
sourceimpl Display for NativeEndian<u32>
impl Display for NativeEndian<u32>
sourceimpl Display for NativeEndian<u64>
impl Display for NativeEndian<u64>
sourceimpl Display for NativeEndian<u128>
impl Display for NativeEndian<u128>
sourceimpl Display for NativeEndian<f32>
impl Display for NativeEndian<f32>
sourceimpl Display for NativeEndian<f64>
impl Display for NativeEndian<f64>
sourceimpl Div<&'_ NativeEndian<f32>> for f32
impl Div<&'_ NativeEndian<f32>> for f32
sourceimpl Div<&'_ NativeEndian<f32>> for &f32
impl Div<&'_ NativeEndian<f32>> for &f32
sourceimpl Div<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl Div<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Div<&'_ NativeEndian<f32>> for &NativeEndian<f32>
impl Div<&'_ NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Div<&'_ NativeEndian<f64>> for f64
impl Div<&'_ NativeEndian<f64>> for f64
sourceimpl Div<&'_ NativeEndian<f64>> for &f64
impl Div<&'_ NativeEndian<f64>> for &f64
sourceimpl Div<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl Div<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Div<&'_ NativeEndian<f64>> for &NativeEndian<f64>
impl Div<&'_ NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Div<&'_ NativeEndian<i128>> for i128
impl Div<&'_ NativeEndian<i128>> for i128
sourceimpl Div<&'_ NativeEndian<i128>> for &i128
impl Div<&'_ NativeEndian<i128>> for &i128
sourceimpl Div<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Div<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Div<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Div<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Div<&'_ NativeEndian<i16>> for i16
impl Div<&'_ NativeEndian<i16>> for i16
sourceimpl Div<&'_ NativeEndian<i16>> for &i16
impl Div<&'_ NativeEndian<i16>> for &i16
sourceimpl Div<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Div<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Div<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Div<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Div<&'_ NativeEndian<i32>> for i32
impl Div<&'_ NativeEndian<i32>> for i32
sourceimpl Div<&'_ NativeEndian<i32>> for &i32
impl Div<&'_ NativeEndian<i32>> for &i32
sourceimpl Div<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Div<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Div<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Div<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Div<&'_ NativeEndian<i64>> for i64
impl Div<&'_ NativeEndian<i64>> for i64
sourceimpl Div<&'_ NativeEndian<i64>> for &i64
impl Div<&'_ NativeEndian<i64>> for &i64
sourceimpl Div<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Div<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Div<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Div<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Div<&'_ NativeEndian<u128>> for u128
impl Div<&'_ NativeEndian<u128>> for u128
sourceimpl Div<&'_ NativeEndian<u128>> for &u128
impl Div<&'_ NativeEndian<u128>> for &u128
sourceimpl Div<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Div<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Div<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Div<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Div<&'_ NativeEndian<u16>> for u16
impl Div<&'_ NativeEndian<u16>> for u16
sourceimpl Div<&'_ NativeEndian<u16>> for &u16
impl Div<&'_ NativeEndian<u16>> for &u16
sourceimpl Div<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Div<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Div<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Div<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Div<&'_ NativeEndian<u32>> for u32
impl Div<&'_ NativeEndian<u32>> for u32
sourceimpl Div<&'_ NativeEndian<u32>> for &u32
impl Div<&'_ NativeEndian<u32>> for &u32
sourceimpl Div<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Div<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Div<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Div<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Div<&'_ NativeEndian<u64>> for u64
impl Div<&'_ NativeEndian<u64>> for u64
sourceimpl Div<&'_ NativeEndian<u64>> for &u64
impl Div<&'_ NativeEndian<u64>> for &u64
sourceimpl Div<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Div<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Div<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Div<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Div<&'_ f32> for NativeEndian<f32>
impl Div<&'_ f32> for NativeEndian<f32>
sourceimpl Div<&'_ f32> for &NativeEndian<f32>
impl Div<&'_ f32> for &NativeEndian<f32>
sourceimpl Div<&'_ f64> for NativeEndian<f64>
impl Div<&'_ f64> for NativeEndian<f64>
sourceimpl Div<&'_ f64> for &NativeEndian<f64>
impl Div<&'_ f64> for &NativeEndian<f64>
sourceimpl Div<&'_ i128> for NativeEndian<i128>
impl Div<&'_ i128> for NativeEndian<i128>
sourceimpl Div<&'_ i128> for &NativeEndian<i128>
impl Div<&'_ i128> for &NativeEndian<i128>
sourceimpl Div<&'_ i16> for NativeEndian<i16>
impl Div<&'_ i16> for NativeEndian<i16>
sourceimpl Div<&'_ i16> for &NativeEndian<i16>
impl Div<&'_ i16> for &NativeEndian<i16>
sourceimpl Div<&'_ i32> for NativeEndian<i32>
impl Div<&'_ i32> for NativeEndian<i32>
sourceimpl Div<&'_ i32> for &NativeEndian<i32>
impl Div<&'_ i32> for &NativeEndian<i32>
sourceimpl Div<&'_ i64> for NativeEndian<i64>
impl Div<&'_ i64> for NativeEndian<i64>
sourceimpl Div<&'_ i64> for &NativeEndian<i64>
impl Div<&'_ i64> for &NativeEndian<i64>
sourceimpl Div<&'_ u128> for NativeEndian<u128>
impl Div<&'_ u128> for NativeEndian<u128>
sourceimpl Div<&'_ u128> for &NativeEndian<u128>
impl Div<&'_ u128> for &NativeEndian<u128>
sourceimpl Div<&'_ u16> for NativeEndian<u16>
impl Div<&'_ u16> for NativeEndian<u16>
sourceimpl Div<&'_ u16> for &NativeEndian<u16>
impl Div<&'_ u16> for &NativeEndian<u16>
sourceimpl Div<&'_ u32> for NativeEndian<u32>
impl Div<&'_ u32> for NativeEndian<u32>
sourceimpl Div<&'_ u32> for &NativeEndian<u32>
impl Div<&'_ u32> for &NativeEndian<u32>
sourceimpl Div<&'_ u64> for NativeEndian<u64>
impl Div<&'_ u64> for NativeEndian<u64>
sourceimpl Div<&'_ u64> for &NativeEndian<u64>
impl Div<&'_ u64> for &NativeEndian<u64>
sourceimpl Div<NativeEndian<f32>> for f32
impl Div<NativeEndian<f32>> for f32
sourceimpl Div<NativeEndian<f32>> for &f32
impl Div<NativeEndian<f32>> for &f32
sourceimpl Div<NativeEndian<f32>> for NativeEndian<f32>
impl Div<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Div<NativeEndian<f32>> for &NativeEndian<f32>
impl Div<NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Div<NativeEndian<f64>> for f64
impl Div<NativeEndian<f64>> for f64
sourceimpl Div<NativeEndian<f64>> for &f64
impl Div<NativeEndian<f64>> for &f64
sourceimpl Div<NativeEndian<f64>> for NativeEndian<f64>
impl Div<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Div<NativeEndian<f64>> for &NativeEndian<f64>
impl Div<NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Div<NativeEndian<i128>> for i128
impl Div<NativeEndian<i128>> for i128
sourceimpl Div<NativeEndian<i128>> for &i128
impl Div<NativeEndian<i128>> for &i128
sourceimpl Div<NativeEndian<i128>> for NativeEndian<i128>
impl Div<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Div<NativeEndian<i128>> for &NativeEndian<i128>
impl Div<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Div<NativeEndian<i16>> for i16
impl Div<NativeEndian<i16>> for i16
sourceimpl Div<NativeEndian<i16>> for &i16
impl Div<NativeEndian<i16>> for &i16
sourceimpl Div<NativeEndian<i16>> for NativeEndian<i16>
impl Div<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Div<NativeEndian<i16>> for &NativeEndian<i16>
impl Div<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Div<NativeEndian<i32>> for i32
impl Div<NativeEndian<i32>> for i32
sourceimpl Div<NativeEndian<i32>> for &i32
impl Div<NativeEndian<i32>> for &i32
sourceimpl Div<NativeEndian<i32>> for NativeEndian<i32>
impl Div<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Div<NativeEndian<i32>> for &NativeEndian<i32>
impl Div<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Div<NativeEndian<i64>> for i64
impl Div<NativeEndian<i64>> for i64
sourceimpl Div<NativeEndian<i64>> for &i64
impl Div<NativeEndian<i64>> for &i64
sourceimpl Div<NativeEndian<i64>> for NativeEndian<i64>
impl Div<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Div<NativeEndian<i64>> for &NativeEndian<i64>
impl Div<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Div<NativeEndian<u128>> for u128
impl Div<NativeEndian<u128>> for u128
sourceimpl Div<NativeEndian<u128>> for &u128
impl Div<NativeEndian<u128>> for &u128
sourceimpl Div<NativeEndian<u128>> for NativeEndian<u128>
impl Div<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Div<NativeEndian<u128>> for &NativeEndian<u128>
impl Div<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Div<NativeEndian<u16>> for u16
impl Div<NativeEndian<u16>> for u16
sourceimpl Div<NativeEndian<u16>> for &u16
impl Div<NativeEndian<u16>> for &u16
sourceimpl Div<NativeEndian<u16>> for NativeEndian<u16>
impl Div<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Div<NativeEndian<u16>> for &NativeEndian<u16>
impl Div<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Div<NativeEndian<u32>> for u32
impl Div<NativeEndian<u32>> for u32
sourceimpl Div<NativeEndian<u32>> for &u32
impl Div<NativeEndian<u32>> for &u32
sourceimpl Div<NativeEndian<u32>> for NativeEndian<u32>
impl Div<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Div<NativeEndian<u32>> for &NativeEndian<u32>
impl Div<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Div<NativeEndian<u64>> for u64
impl Div<NativeEndian<u64>> for u64
sourceimpl Div<NativeEndian<u64>> for &u64
impl Div<NativeEndian<u64>> for &u64
sourceimpl Div<NativeEndian<u64>> for NativeEndian<u64>
impl Div<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Div<NativeEndian<u64>> for &NativeEndian<u64>
impl Div<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Div<f32> for NativeEndian<f32>
impl Div<f32> for NativeEndian<f32>
sourceimpl Div<f32> for &NativeEndian<f32>
impl Div<f32> for &NativeEndian<f32>
sourceimpl Div<f64> for NativeEndian<f64>
impl Div<f64> for NativeEndian<f64>
sourceimpl Div<f64> for &NativeEndian<f64>
impl Div<f64> for &NativeEndian<f64>
sourceimpl Div<i128> for NativeEndian<i128>
impl Div<i128> for NativeEndian<i128>
sourceimpl Div<i128> for &NativeEndian<i128>
impl Div<i128> for &NativeEndian<i128>
sourceimpl Div<i16> for NativeEndian<i16>
impl Div<i16> for NativeEndian<i16>
sourceimpl Div<i16> for &NativeEndian<i16>
impl Div<i16> for &NativeEndian<i16>
sourceimpl Div<i32> for NativeEndian<i32>
impl Div<i32> for NativeEndian<i32>
sourceimpl Div<i32> for &NativeEndian<i32>
impl Div<i32> for &NativeEndian<i32>
sourceimpl Div<i64> for NativeEndian<i64>
impl Div<i64> for NativeEndian<i64>
sourceimpl Div<i64> for &NativeEndian<i64>
impl Div<i64> for &NativeEndian<i64>
sourceimpl Div<u128> for NativeEndian<u128>
impl Div<u128> for NativeEndian<u128>
sourceimpl Div<u128> for &NativeEndian<u128>
impl Div<u128> for &NativeEndian<u128>
sourceimpl Div<u16> for NativeEndian<u16>
impl Div<u16> for NativeEndian<u16>
sourceimpl Div<u16> for &NativeEndian<u16>
impl Div<u16> for &NativeEndian<u16>
sourceimpl Div<u32> for NativeEndian<u32>
impl Div<u32> for NativeEndian<u32>
sourceimpl Div<u32> for &NativeEndian<u32>
impl Div<u32> for &NativeEndian<u32>
sourceimpl Div<u64> for NativeEndian<u64>
impl Div<u64> for NativeEndian<u64>
sourceimpl Div<u64> for &NativeEndian<u64>
impl Div<u64> for &NativeEndian<u64>
sourceimpl DivAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl DivAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourcefn div_assign(&mut self, other: &NativeEndian<f32>)
fn div_assign(&mut self, other: &NativeEndian<f32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl DivAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourcefn div_assign(&mut self, other: &NativeEndian<f64>)
fn div_assign(&mut self, other: &NativeEndian<f64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl DivAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn div_assign(&mut self, other: &NativeEndian<i128>)
fn div_assign(&mut self, other: &NativeEndian<i128>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl DivAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn div_assign(&mut self, other: &NativeEndian<i16>)
fn div_assign(&mut self, other: &NativeEndian<i16>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl DivAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn div_assign(&mut self, other: &NativeEndian<i32>)
fn div_assign(&mut self, other: &NativeEndian<i32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl DivAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn div_assign(&mut self, other: &NativeEndian<i64>)
fn div_assign(&mut self, other: &NativeEndian<i64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl DivAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn div_assign(&mut self, other: &NativeEndian<u128>)
fn div_assign(&mut self, other: &NativeEndian<u128>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl DivAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn div_assign(&mut self, other: &NativeEndian<u16>)
fn div_assign(&mut self, other: &NativeEndian<u16>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl DivAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn div_assign(&mut self, other: &NativeEndian<u32>)
fn div_assign(&mut self, other: &NativeEndian<u32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl DivAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn div_assign(&mut self, other: &NativeEndian<u64>)
fn div_assign(&mut self, other: &NativeEndian<u64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ f32> for NativeEndian<f32>
impl DivAssign<&'_ f32> for NativeEndian<f32>
sourcefn div_assign(&mut self, other: &f32)
fn div_assign(&mut self, other: &f32)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ f64> for NativeEndian<f64>
impl DivAssign<&'_ f64> for NativeEndian<f64>
sourcefn div_assign(&mut self, other: &f64)
fn div_assign(&mut self, other: &f64)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ i128> for NativeEndian<i128>
impl DivAssign<&'_ i128> for NativeEndian<i128>
sourcefn div_assign(&mut self, other: &i128)
fn div_assign(&mut self, other: &i128)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ i16> for NativeEndian<i16>
impl DivAssign<&'_ i16> for NativeEndian<i16>
sourcefn div_assign(&mut self, other: &i16)
fn div_assign(&mut self, other: &i16)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ i32> for NativeEndian<i32>
impl DivAssign<&'_ i32> for NativeEndian<i32>
sourcefn div_assign(&mut self, other: &i32)
fn div_assign(&mut self, other: &i32)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ i64> for NativeEndian<i64>
impl DivAssign<&'_ i64> for NativeEndian<i64>
sourcefn div_assign(&mut self, other: &i64)
fn div_assign(&mut self, other: &i64)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ u128> for NativeEndian<u128>
impl DivAssign<&'_ u128> for NativeEndian<u128>
sourcefn div_assign(&mut self, other: &u128)
fn div_assign(&mut self, other: &u128)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ u16> for NativeEndian<u16>
impl DivAssign<&'_ u16> for NativeEndian<u16>
sourcefn div_assign(&mut self, other: &u16)
fn div_assign(&mut self, other: &u16)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ u32> for NativeEndian<u32>
impl DivAssign<&'_ u32> for NativeEndian<u32>
sourcefn div_assign(&mut self, other: &u32)
fn div_assign(&mut self, other: &u32)
Performs the /=
operation. Read more
sourceimpl DivAssign<&'_ u64> for NativeEndian<u64>
impl DivAssign<&'_ u64> for NativeEndian<u64>
sourcefn div_assign(&mut self, other: &u64)
fn div_assign(&mut self, other: &u64)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<f32>> for NativeEndian<f32>
impl DivAssign<NativeEndian<f32>> for NativeEndian<f32>
sourcefn div_assign(&mut self, other: NativeEndian<f32>)
fn div_assign(&mut self, other: NativeEndian<f32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<f64>> for NativeEndian<f64>
impl DivAssign<NativeEndian<f64>> for NativeEndian<f64>
sourcefn div_assign(&mut self, other: NativeEndian<f64>)
fn div_assign(&mut self, other: NativeEndian<f64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<i128>> for NativeEndian<i128>
impl DivAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn div_assign(&mut self, other: NativeEndian<i128>)
fn div_assign(&mut self, other: NativeEndian<i128>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<i16>> for NativeEndian<i16>
impl DivAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn div_assign(&mut self, other: NativeEndian<i16>)
fn div_assign(&mut self, other: NativeEndian<i16>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<i32>> for NativeEndian<i32>
impl DivAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn div_assign(&mut self, other: NativeEndian<i32>)
fn div_assign(&mut self, other: NativeEndian<i32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<i64>> for NativeEndian<i64>
impl DivAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn div_assign(&mut self, other: NativeEndian<i64>)
fn div_assign(&mut self, other: NativeEndian<i64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<u128>> for NativeEndian<u128>
impl DivAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn div_assign(&mut self, other: NativeEndian<u128>)
fn div_assign(&mut self, other: NativeEndian<u128>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<u16>> for NativeEndian<u16>
impl DivAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn div_assign(&mut self, other: NativeEndian<u16>)
fn div_assign(&mut self, other: NativeEndian<u16>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<u32>> for NativeEndian<u32>
impl DivAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn div_assign(&mut self, other: NativeEndian<u32>)
fn div_assign(&mut self, other: NativeEndian<u32>)
Performs the /=
operation. Read more
sourceimpl DivAssign<NativeEndian<u64>> for NativeEndian<u64>
impl DivAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn div_assign(&mut self, other: NativeEndian<u64>)
fn div_assign(&mut self, other: NativeEndian<u64>)
Performs the /=
operation. Read more
sourceimpl DivAssign<f32> for NativeEndian<f32>
impl DivAssign<f32> for NativeEndian<f32>
sourcefn div_assign(&mut self, other: f32)
fn div_assign(&mut self, other: f32)
Performs the /=
operation. Read more
sourceimpl DivAssign<f64> for NativeEndian<f64>
impl DivAssign<f64> for NativeEndian<f64>
sourcefn div_assign(&mut self, other: f64)
fn div_assign(&mut self, other: f64)
Performs the /=
operation. Read more
sourceimpl DivAssign<i128> for NativeEndian<i128>
impl DivAssign<i128> for NativeEndian<i128>
sourcefn div_assign(&mut self, other: i128)
fn div_assign(&mut self, other: i128)
Performs the /=
operation. Read more
sourceimpl DivAssign<i16> for NativeEndian<i16>
impl DivAssign<i16> for NativeEndian<i16>
sourcefn div_assign(&mut self, other: i16)
fn div_assign(&mut self, other: i16)
Performs the /=
operation. Read more
sourceimpl DivAssign<i32> for NativeEndian<i32>
impl DivAssign<i32> for NativeEndian<i32>
sourcefn div_assign(&mut self, other: i32)
fn div_assign(&mut self, other: i32)
Performs the /=
operation. Read more
sourceimpl DivAssign<i64> for NativeEndian<i64>
impl DivAssign<i64> for NativeEndian<i64>
sourcefn div_assign(&mut self, other: i64)
fn div_assign(&mut self, other: i64)
Performs the /=
operation. Read more
sourceimpl DivAssign<u128> for NativeEndian<u128>
impl DivAssign<u128> for NativeEndian<u128>
sourcefn div_assign(&mut self, other: u128)
fn div_assign(&mut self, other: u128)
Performs the /=
operation. Read more
sourceimpl DivAssign<u16> for NativeEndian<u16>
impl DivAssign<u16> for NativeEndian<u16>
sourcefn div_assign(&mut self, other: u16)
fn div_assign(&mut self, other: u16)
Performs the /=
operation. Read more
sourceimpl DivAssign<u32> for NativeEndian<u32>
impl DivAssign<u32> for NativeEndian<u32>
sourcefn div_assign(&mut self, other: u32)
fn div_assign(&mut self, other: u32)
Performs the /=
operation. Read more
sourceimpl DivAssign<u64> for NativeEndian<u64>
impl DivAssign<u64> for NativeEndian<u64>
sourcefn div_assign(&mut self, other: u64)
fn div_assign(&mut self, other: u64)
Performs the /=
operation. Read more
sourceimpl<'a> From<&'a NativeEndian<NonZeroI128>> for NonZeroI128
impl<'a> From<&'a NativeEndian<NonZeroI128>> for NonZeroI128
sourcefn from(value: &'a NativeEndian<NonZeroI128>) -> Self
fn from(value: &'a NativeEndian<NonZeroI128>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroI16>> for NonZeroI16
impl<'a> From<&'a NativeEndian<NonZeroI16>> for NonZeroI16
sourcefn from(value: &'a NativeEndian<NonZeroI16>) -> Self
fn from(value: &'a NativeEndian<NonZeroI16>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroI32>> for NonZeroI32
impl<'a> From<&'a NativeEndian<NonZeroI32>> for NonZeroI32
sourcefn from(value: &'a NativeEndian<NonZeroI32>) -> Self
fn from(value: &'a NativeEndian<NonZeroI32>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroI64>> for NonZeroI64
impl<'a> From<&'a NativeEndian<NonZeroI64>> for NonZeroI64
sourcefn from(value: &'a NativeEndian<NonZeroI64>) -> Self
fn from(value: &'a NativeEndian<NonZeroI64>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroU128>> for NonZeroU128
impl<'a> From<&'a NativeEndian<NonZeroU128>> for NonZeroU128
sourcefn from(value: &'a NativeEndian<NonZeroU128>) -> Self
fn from(value: &'a NativeEndian<NonZeroU128>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroU16>> for NonZeroU16
impl<'a> From<&'a NativeEndian<NonZeroU16>> for NonZeroU16
sourcefn from(value: &'a NativeEndian<NonZeroU16>) -> Self
fn from(value: &'a NativeEndian<NonZeroU16>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroU32>> for NonZeroU32
impl<'a> From<&'a NativeEndian<NonZeroU32>> for NonZeroU32
sourcefn from(value: &'a NativeEndian<NonZeroU32>) -> Self
fn from(value: &'a NativeEndian<NonZeroU32>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<NonZeroU64>> for NonZeroU64
impl<'a> From<&'a NativeEndian<NonZeroU64>> for NonZeroU64
sourcefn from(value: &'a NativeEndian<NonZeroU64>) -> Self
fn from(value: &'a NativeEndian<NonZeroU64>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<char>> for char
impl<'a> From<&'a NativeEndian<char>> for char
sourcefn from(value: &'a NativeEndian<char>) -> Self
fn from(value: &'a NativeEndian<char>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<f32>> for f32
impl<'a> From<&'a NativeEndian<f32>> for f32
sourcefn from(value: &'a NativeEndian<f32>) -> Self
fn from(value: &'a NativeEndian<f32>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<f64>> for f64
impl<'a> From<&'a NativeEndian<f64>> for f64
sourcefn from(value: &'a NativeEndian<f64>) -> Self
fn from(value: &'a NativeEndian<f64>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<i128>> for i128
impl<'a> From<&'a NativeEndian<i128>> for i128
sourcefn from(value: &'a NativeEndian<i128>) -> Self
fn from(value: &'a NativeEndian<i128>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<i16>> for i16
impl<'a> From<&'a NativeEndian<i16>> for i16
sourcefn from(value: &'a NativeEndian<i16>) -> Self
fn from(value: &'a NativeEndian<i16>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<i32>> for i32
impl<'a> From<&'a NativeEndian<i32>> for i32
sourcefn from(value: &'a NativeEndian<i32>) -> Self
fn from(value: &'a NativeEndian<i32>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<i64>> for i64
impl<'a> From<&'a NativeEndian<i64>> for i64
sourcefn from(value: &'a NativeEndian<i64>) -> Self
fn from(value: &'a NativeEndian<i64>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<u128>> for u128
impl<'a> From<&'a NativeEndian<u128>> for u128
sourcefn from(value: &'a NativeEndian<u128>) -> Self
fn from(value: &'a NativeEndian<u128>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<u16>> for u16
impl<'a> From<&'a NativeEndian<u16>> for u16
sourcefn from(value: &'a NativeEndian<u16>) -> Self
fn from(value: &'a NativeEndian<u16>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<u32>> for u32
impl<'a> From<&'a NativeEndian<u32>> for u32
sourcefn from(value: &'a NativeEndian<u32>) -> Self
fn from(value: &'a NativeEndian<u32>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NativeEndian<u64>> for u64
impl<'a> From<&'a NativeEndian<u64>> for u64
sourcefn from(value: &'a NativeEndian<u64>) -> Self
fn from(value: &'a NativeEndian<u64>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroI128> for NativeEndian<NonZeroI128>
impl<'a> From<&'a NonZeroI128> for NativeEndian<NonZeroI128>
sourcefn from(value: &'a NonZeroI128) -> Self
fn from(value: &'a NonZeroI128) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroI16> for NativeEndian<NonZeroI16>
impl<'a> From<&'a NonZeroI16> for NativeEndian<NonZeroI16>
sourcefn from(value: &'a NonZeroI16) -> Self
fn from(value: &'a NonZeroI16) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroI32> for NativeEndian<NonZeroI32>
impl<'a> From<&'a NonZeroI32> for NativeEndian<NonZeroI32>
sourcefn from(value: &'a NonZeroI32) -> Self
fn from(value: &'a NonZeroI32) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroI64> for NativeEndian<NonZeroI64>
impl<'a> From<&'a NonZeroI64> for NativeEndian<NonZeroI64>
sourcefn from(value: &'a NonZeroI64) -> Self
fn from(value: &'a NonZeroI64) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroU128> for NativeEndian<NonZeroU128>
impl<'a> From<&'a NonZeroU128> for NativeEndian<NonZeroU128>
sourcefn from(value: &'a NonZeroU128) -> Self
fn from(value: &'a NonZeroU128) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroU16> for NativeEndian<NonZeroU16>
impl<'a> From<&'a NonZeroU16> for NativeEndian<NonZeroU16>
sourcefn from(value: &'a NonZeroU16) -> Self
fn from(value: &'a NonZeroU16) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroU32> for NativeEndian<NonZeroU32>
impl<'a> From<&'a NonZeroU32> for NativeEndian<NonZeroU32>
sourcefn from(value: &'a NonZeroU32) -> Self
fn from(value: &'a NonZeroU32) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a NonZeroU64> for NativeEndian<NonZeroU64>
impl<'a> From<&'a NonZeroU64> for NativeEndian<NonZeroU64>
sourcefn from(value: &'a NonZeroU64) -> Self
fn from(value: &'a NonZeroU64) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a char> for NativeEndian<char>
impl<'a> From<&'a char> for NativeEndian<char>
sourceimpl<'a> From<&'a f32> for NativeEndian<f32>
impl<'a> From<&'a f32> for NativeEndian<f32>
sourceimpl<'a> From<&'a f64> for NativeEndian<f64>
impl<'a> From<&'a f64> for NativeEndian<f64>
sourceimpl<'a> From<&'a i128> for NativeEndian<i128>
impl<'a> From<&'a i128> for NativeEndian<i128>
sourceimpl<'a> From<&'a i16> for NativeEndian<i16>
impl<'a> From<&'a i16> for NativeEndian<i16>
sourceimpl<'a> From<&'a i32> for NativeEndian<i32>
impl<'a> From<&'a i32> for NativeEndian<i32>
sourceimpl<'a> From<&'a i64> for NativeEndian<i64>
impl<'a> From<&'a i64> for NativeEndian<i64>
sourceimpl<'a> From<&'a u128> for NativeEndian<u128>
impl<'a> From<&'a u128> for NativeEndian<u128>
sourceimpl<'a> From<&'a u16> for NativeEndian<u16>
impl<'a> From<&'a u16> for NativeEndian<u16>
sourceimpl<'a> From<&'a u32> for NativeEndian<u32>
impl<'a> From<&'a u32> for NativeEndian<u32>
sourceimpl<'a> From<&'a u64> for NativeEndian<u64>
impl<'a> From<&'a u64> for NativeEndian<u64>
sourceimpl From<NativeEndian<NonZeroI128>> for NonZeroI128
impl From<NativeEndian<NonZeroI128>> for NonZeroI128
sourcefn from(value: NativeEndian<NonZeroI128>) -> Self
fn from(value: NativeEndian<NonZeroI128>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroI16>> for NonZeroI16
impl From<NativeEndian<NonZeroI16>> for NonZeroI16
sourcefn from(value: NativeEndian<NonZeroI16>) -> Self
fn from(value: NativeEndian<NonZeroI16>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroI32>> for NonZeroI32
impl From<NativeEndian<NonZeroI32>> for NonZeroI32
sourcefn from(value: NativeEndian<NonZeroI32>) -> Self
fn from(value: NativeEndian<NonZeroI32>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroI64>> for NonZeroI64
impl From<NativeEndian<NonZeroI64>> for NonZeroI64
sourcefn from(value: NativeEndian<NonZeroI64>) -> Self
fn from(value: NativeEndian<NonZeroI64>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroU128>> for NonZeroU128
impl From<NativeEndian<NonZeroU128>> for NonZeroU128
sourcefn from(value: NativeEndian<NonZeroU128>) -> Self
fn from(value: NativeEndian<NonZeroU128>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroU16>> for NonZeroU16
impl From<NativeEndian<NonZeroU16>> for NonZeroU16
sourcefn from(value: NativeEndian<NonZeroU16>) -> Self
fn from(value: NativeEndian<NonZeroU16>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroU32>> for NonZeroU32
impl From<NativeEndian<NonZeroU32>> for NonZeroU32
sourcefn from(value: NativeEndian<NonZeroU32>) -> Self
fn from(value: NativeEndian<NonZeroU32>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<NonZeroU64>> for NonZeroU64
impl From<NativeEndian<NonZeroU64>> for NonZeroU64
sourcefn from(value: NativeEndian<NonZeroU64>) -> Self
fn from(value: NativeEndian<NonZeroU64>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<char>> for char
impl From<NativeEndian<char>> for char
sourcefn from(value: NativeEndian<char>) -> Self
fn from(value: NativeEndian<char>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<f32>> for f32
impl From<NativeEndian<f32>> for f32
sourcefn from(value: NativeEndian<f32>) -> Self
fn from(value: NativeEndian<f32>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<f64>> for f64
impl From<NativeEndian<f64>> for f64
sourcefn from(value: NativeEndian<f64>) -> Self
fn from(value: NativeEndian<f64>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<i128>> for i128
impl From<NativeEndian<i128>> for i128
sourcefn from(value: NativeEndian<i128>) -> Self
fn from(value: NativeEndian<i128>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<i16>> for i16
impl From<NativeEndian<i16>> for i16
sourcefn from(value: NativeEndian<i16>) -> Self
fn from(value: NativeEndian<i16>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<i32>> for i32
impl From<NativeEndian<i32>> for i32
sourcefn from(value: NativeEndian<i32>) -> Self
fn from(value: NativeEndian<i32>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<i64>> for i64
impl From<NativeEndian<i64>> for i64
sourcefn from(value: NativeEndian<i64>) -> Self
fn from(value: NativeEndian<i64>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<u128>> for u128
impl From<NativeEndian<u128>> for u128
sourcefn from(value: NativeEndian<u128>) -> Self
fn from(value: NativeEndian<u128>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<u16>> for u16
impl From<NativeEndian<u16>> for u16
sourcefn from(value: NativeEndian<u16>) -> Self
fn from(value: NativeEndian<u16>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<u32>> for u32
impl From<NativeEndian<u32>> for u32
sourcefn from(value: NativeEndian<u32>) -> Self
fn from(value: NativeEndian<u32>) -> Self
Performs the conversion.
sourceimpl From<NativeEndian<u64>> for u64
impl From<NativeEndian<u64>> for u64
sourcefn from(value: NativeEndian<u64>) -> Self
fn from(value: NativeEndian<u64>) -> Self
Performs the conversion.
sourceimpl From<NonZeroI128> for NativeEndian<NonZeroI128>
impl From<NonZeroI128> for NativeEndian<NonZeroI128>
sourcefn from(value: NonZeroI128) -> Self
fn from(value: NonZeroI128) -> Self
Performs the conversion.
sourceimpl From<NonZeroI16> for NativeEndian<NonZeroI16>
impl From<NonZeroI16> for NativeEndian<NonZeroI16>
sourcefn from(value: NonZeroI16) -> Self
fn from(value: NonZeroI16) -> Self
Performs the conversion.
sourceimpl From<NonZeroI32> for NativeEndian<NonZeroI32>
impl From<NonZeroI32> for NativeEndian<NonZeroI32>
sourcefn from(value: NonZeroI32) -> Self
fn from(value: NonZeroI32) -> Self
Performs the conversion.
sourceimpl From<NonZeroI64> for NativeEndian<NonZeroI64>
impl From<NonZeroI64> for NativeEndian<NonZeroI64>
sourcefn from(value: NonZeroI64) -> Self
fn from(value: NonZeroI64) -> Self
Performs the conversion.
sourceimpl From<NonZeroU128> for NativeEndian<NonZeroU128>
impl From<NonZeroU128> for NativeEndian<NonZeroU128>
sourcefn from(value: NonZeroU128) -> Self
fn from(value: NonZeroU128) -> Self
Performs the conversion.
sourceimpl From<NonZeroU16> for NativeEndian<NonZeroU16>
impl From<NonZeroU16> for NativeEndian<NonZeroU16>
sourcefn from(value: NonZeroU16) -> Self
fn from(value: NonZeroU16) -> Self
Performs the conversion.
sourceimpl From<NonZeroU32> for NativeEndian<NonZeroU32>
impl From<NonZeroU32> for NativeEndian<NonZeroU32>
sourcefn from(value: NonZeroU32) -> Self
fn from(value: NonZeroU32) -> Self
Performs the conversion.
sourceimpl From<NonZeroU64> for NativeEndian<NonZeroU64>
impl From<NonZeroU64> for NativeEndian<NonZeroU64>
sourcefn from(value: NonZeroU64) -> Self
fn from(value: NonZeroU64) -> Self
Performs the conversion.
sourceimpl From<char> for NativeEndian<char>
impl From<char> for NativeEndian<char>
sourceimpl From<i128> for NativeEndian<i128>
impl From<i128> for NativeEndian<i128>
sourceimpl From<i16> for NativeEndian<AtomicI16>
impl From<i16> for NativeEndian<AtomicI16>
sourceimpl From<i32> for NativeEndian<AtomicI32>
impl From<i32> for NativeEndian<AtomicI32>
sourceimpl From<i64> for NativeEndian<AtomicI64>
impl From<i64> for NativeEndian<AtomicI64>
sourceimpl From<u128> for NativeEndian<u128>
impl From<u128> for NativeEndian<u128>
sourceimpl From<u16> for NativeEndian<AtomicU16>
impl From<u16> for NativeEndian<AtomicU16>
sourceimpl From<u32> for NativeEndian<AtomicU32>
impl From<u32> for NativeEndian<AtomicU32>
sourceimpl From<u64> for NativeEndian<AtomicU64>
impl From<u64> for NativeEndian<AtomicU64>
sourceimpl Hash for NativeEndian<i16>
impl Hash for NativeEndian<i16>
sourceimpl Hash for NativeEndian<i32>
impl Hash for NativeEndian<i32>
sourceimpl Hash for NativeEndian<NonZeroI32>
impl Hash for NativeEndian<NonZeroI32>
sourceimpl Hash for NativeEndian<NonZeroI64>
impl Hash for NativeEndian<NonZeroI64>
sourceimpl Hash for NativeEndian<NonZeroI128>
impl Hash for NativeEndian<NonZeroI128>
sourceimpl Hash for NativeEndian<NonZeroU16>
impl Hash for NativeEndian<NonZeroU16>
sourceimpl Hash for NativeEndian<NonZeroU32>
impl Hash for NativeEndian<NonZeroU32>
sourceimpl Hash for NativeEndian<NonZeroU64>
impl Hash for NativeEndian<NonZeroU64>
sourceimpl Hash for NativeEndian<NonZeroU128>
impl Hash for NativeEndian<NonZeroU128>
sourceimpl Hash for NativeEndian<i64>
impl Hash for NativeEndian<i64>
sourceimpl Hash for NativeEndian<i128>
impl Hash for NativeEndian<i128>
sourceimpl Hash for NativeEndian<u16>
impl Hash for NativeEndian<u16>
sourceimpl Hash for NativeEndian<u32>
impl Hash for NativeEndian<u32>
sourceimpl Hash for NativeEndian<u64>
impl Hash for NativeEndian<u64>
sourceimpl Hash for NativeEndian<u128>
impl Hash for NativeEndian<u128>
sourceimpl Hash for NativeEndian<char>
impl Hash for NativeEndian<char>
sourceimpl Hash for NativeEndian<NonZeroI16>
impl Hash for NativeEndian<NonZeroI16>
sourceimpl LowerExp for NativeEndian<i16>
impl LowerExp for NativeEndian<i16>
sourceimpl LowerExp for NativeEndian<i32>
impl LowerExp for NativeEndian<i32>
sourceimpl LowerExp for NativeEndian<i64>
impl LowerExp for NativeEndian<i64>
sourceimpl LowerExp for NativeEndian<i128>
impl LowerExp for NativeEndian<i128>
sourceimpl LowerExp for NativeEndian<u16>
impl LowerExp for NativeEndian<u16>
sourceimpl LowerExp for NativeEndian<u32>
impl LowerExp for NativeEndian<u32>
sourceimpl LowerExp for NativeEndian<u64>
impl LowerExp for NativeEndian<u64>
sourceimpl LowerExp for NativeEndian<u128>
impl LowerExp for NativeEndian<u128>
sourceimpl LowerExp for NativeEndian<f32>
impl LowerExp for NativeEndian<f32>
sourceimpl LowerExp for NativeEndian<f64>
impl LowerExp for NativeEndian<f64>
sourceimpl LowerHex for NativeEndian<i16>
impl LowerHex for NativeEndian<i16>
sourceimpl LowerHex for NativeEndian<i32>
impl LowerHex for NativeEndian<i32>
sourceimpl LowerHex for NativeEndian<NonZeroI64>
impl LowerHex for NativeEndian<NonZeroI64>
sourceimpl LowerHex for NativeEndian<NonZeroI128>
impl LowerHex for NativeEndian<NonZeroI128>
sourceimpl LowerHex for NativeEndian<NonZeroU16>
impl LowerHex for NativeEndian<NonZeroU16>
sourceimpl LowerHex for NativeEndian<NonZeroU32>
impl LowerHex for NativeEndian<NonZeroU32>
sourceimpl LowerHex for NativeEndian<NonZeroU64>
impl LowerHex for NativeEndian<NonZeroU64>
sourceimpl LowerHex for NativeEndian<NonZeroU128>
impl LowerHex for NativeEndian<NonZeroU128>
sourceimpl LowerHex for NativeEndian<i64>
impl LowerHex for NativeEndian<i64>
sourceimpl LowerHex for NativeEndian<i128>
impl LowerHex for NativeEndian<i128>
sourceimpl LowerHex for NativeEndian<u16>
impl LowerHex for NativeEndian<u16>
sourceimpl LowerHex for NativeEndian<u32>
impl LowerHex for NativeEndian<u32>
sourceimpl LowerHex for NativeEndian<u64>
impl LowerHex for NativeEndian<u64>
sourceimpl LowerHex for NativeEndian<u128>
impl LowerHex for NativeEndian<u128>
sourceimpl LowerHex for NativeEndian<NonZeroI16>
impl LowerHex for NativeEndian<NonZeroI16>
sourceimpl LowerHex for NativeEndian<NonZeroI32>
impl LowerHex for NativeEndian<NonZeroI32>
sourceimpl Mul<&'_ NativeEndian<f32>> for f32
impl Mul<&'_ NativeEndian<f32>> for f32
sourceimpl Mul<&'_ NativeEndian<f32>> for &f32
impl Mul<&'_ NativeEndian<f32>> for &f32
sourceimpl Mul<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl Mul<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Mul<&'_ NativeEndian<f32>> for &NativeEndian<f32>
impl Mul<&'_ NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Mul<&'_ NativeEndian<f64>> for f64
impl Mul<&'_ NativeEndian<f64>> for f64
sourceimpl Mul<&'_ NativeEndian<f64>> for &f64
impl Mul<&'_ NativeEndian<f64>> for &f64
sourceimpl Mul<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl Mul<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Mul<&'_ NativeEndian<f64>> for &NativeEndian<f64>
impl Mul<&'_ NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Mul<&'_ NativeEndian<i128>> for i128
impl Mul<&'_ NativeEndian<i128>> for i128
sourceimpl Mul<&'_ NativeEndian<i128>> for &i128
impl Mul<&'_ NativeEndian<i128>> for &i128
sourceimpl Mul<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Mul<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Mul<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Mul<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Mul<&'_ NativeEndian<i16>> for i16
impl Mul<&'_ NativeEndian<i16>> for i16
sourceimpl Mul<&'_ NativeEndian<i16>> for &i16
impl Mul<&'_ NativeEndian<i16>> for &i16
sourceimpl Mul<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Mul<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Mul<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Mul<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Mul<&'_ NativeEndian<i32>> for i32
impl Mul<&'_ NativeEndian<i32>> for i32
sourceimpl Mul<&'_ NativeEndian<i32>> for &i32
impl Mul<&'_ NativeEndian<i32>> for &i32
sourceimpl Mul<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Mul<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Mul<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Mul<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Mul<&'_ NativeEndian<i64>> for i64
impl Mul<&'_ NativeEndian<i64>> for i64
sourceimpl Mul<&'_ NativeEndian<i64>> for &i64
impl Mul<&'_ NativeEndian<i64>> for &i64
sourceimpl Mul<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Mul<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Mul<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Mul<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Mul<&'_ NativeEndian<u128>> for u128
impl Mul<&'_ NativeEndian<u128>> for u128
sourceimpl Mul<&'_ NativeEndian<u128>> for &u128
impl Mul<&'_ NativeEndian<u128>> for &u128
sourceimpl Mul<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Mul<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Mul<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Mul<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Mul<&'_ NativeEndian<u16>> for u16
impl Mul<&'_ NativeEndian<u16>> for u16
sourceimpl Mul<&'_ NativeEndian<u16>> for &u16
impl Mul<&'_ NativeEndian<u16>> for &u16
sourceimpl Mul<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Mul<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Mul<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Mul<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Mul<&'_ NativeEndian<u32>> for u32
impl Mul<&'_ NativeEndian<u32>> for u32
sourceimpl Mul<&'_ NativeEndian<u32>> for &u32
impl Mul<&'_ NativeEndian<u32>> for &u32
sourceimpl Mul<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Mul<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Mul<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Mul<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Mul<&'_ NativeEndian<u64>> for u64
impl Mul<&'_ NativeEndian<u64>> for u64
sourceimpl Mul<&'_ NativeEndian<u64>> for &u64
impl Mul<&'_ NativeEndian<u64>> for &u64
sourceimpl Mul<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Mul<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Mul<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Mul<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Mul<&'_ f32> for NativeEndian<f32>
impl Mul<&'_ f32> for NativeEndian<f32>
sourceimpl Mul<&'_ f32> for &NativeEndian<f32>
impl Mul<&'_ f32> for &NativeEndian<f32>
sourceimpl Mul<&'_ f64> for NativeEndian<f64>
impl Mul<&'_ f64> for NativeEndian<f64>
sourceimpl Mul<&'_ f64> for &NativeEndian<f64>
impl Mul<&'_ f64> for &NativeEndian<f64>
sourceimpl Mul<&'_ i128> for NativeEndian<i128>
impl Mul<&'_ i128> for NativeEndian<i128>
sourceimpl Mul<&'_ i128> for &NativeEndian<i128>
impl Mul<&'_ i128> for &NativeEndian<i128>
sourceimpl Mul<&'_ i16> for NativeEndian<i16>
impl Mul<&'_ i16> for NativeEndian<i16>
sourceimpl Mul<&'_ i16> for &NativeEndian<i16>
impl Mul<&'_ i16> for &NativeEndian<i16>
sourceimpl Mul<&'_ i32> for NativeEndian<i32>
impl Mul<&'_ i32> for NativeEndian<i32>
sourceimpl Mul<&'_ i32> for &NativeEndian<i32>
impl Mul<&'_ i32> for &NativeEndian<i32>
sourceimpl Mul<&'_ i64> for NativeEndian<i64>
impl Mul<&'_ i64> for NativeEndian<i64>
sourceimpl Mul<&'_ i64> for &NativeEndian<i64>
impl Mul<&'_ i64> for &NativeEndian<i64>
sourceimpl Mul<&'_ u128> for NativeEndian<u128>
impl Mul<&'_ u128> for NativeEndian<u128>
sourceimpl Mul<&'_ u128> for &NativeEndian<u128>
impl Mul<&'_ u128> for &NativeEndian<u128>
sourceimpl Mul<&'_ u16> for NativeEndian<u16>
impl Mul<&'_ u16> for NativeEndian<u16>
sourceimpl Mul<&'_ u16> for &NativeEndian<u16>
impl Mul<&'_ u16> for &NativeEndian<u16>
sourceimpl Mul<&'_ u32> for NativeEndian<u32>
impl Mul<&'_ u32> for NativeEndian<u32>
sourceimpl Mul<&'_ u32> for &NativeEndian<u32>
impl Mul<&'_ u32> for &NativeEndian<u32>
sourceimpl Mul<&'_ u64> for NativeEndian<u64>
impl Mul<&'_ u64> for NativeEndian<u64>
sourceimpl Mul<&'_ u64> for &NativeEndian<u64>
impl Mul<&'_ u64> for &NativeEndian<u64>
sourceimpl Mul<NativeEndian<f32>> for f32
impl Mul<NativeEndian<f32>> for f32
sourceimpl Mul<NativeEndian<f32>> for &f32
impl Mul<NativeEndian<f32>> for &f32
sourceimpl Mul<NativeEndian<f32>> for NativeEndian<f32>
impl Mul<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Mul<NativeEndian<f32>> for &NativeEndian<f32>
impl Mul<NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Mul<NativeEndian<f64>> for f64
impl Mul<NativeEndian<f64>> for f64
sourceimpl Mul<NativeEndian<f64>> for &f64
impl Mul<NativeEndian<f64>> for &f64
sourceimpl Mul<NativeEndian<f64>> for NativeEndian<f64>
impl Mul<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Mul<NativeEndian<f64>> for &NativeEndian<f64>
impl Mul<NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Mul<NativeEndian<i128>> for i128
impl Mul<NativeEndian<i128>> for i128
sourceimpl Mul<NativeEndian<i128>> for &i128
impl Mul<NativeEndian<i128>> for &i128
sourceimpl Mul<NativeEndian<i128>> for NativeEndian<i128>
impl Mul<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Mul<NativeEndian<i128>> for &NativeEndian<i128>
impl Mul<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Mul<NativeEndian<i16>> for i16
impl Mul<NativeEndian<i16>> for i16
sourceimpl Mul<NativeEndian<i16>> for &i16
impl Mul<NativeEndian<i16>> for &i16
sourceimpl Mul<NativeEndian<i16>> for NativeEndian<i16>
impl Mul<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Mul<NativeEndian<i16>> for &NativeEndian<i16>
impl Mul<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Mul<NativeEndian<i32>> for i32
impl Mul<NativeEndian<i32>> for i32
sourceimpl Mul<NativeEndian<i32>> for &i32
impl Mul<NativeEndian<i32>> for &i32
sourceimpl Mul<NativeEndian<i32>> for NativeEndian<i32>
impl Mul<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Mul<NativeEndian<i32>> for &NativeEndian<i32>
impl Mul<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Mul<NativeEndian<i64>> for i64
impl Mul<NativeEndian<i64>> for i64
sourceimpl Mul<NativeEndian<i64>> for &i64
impl Mul<NativeEndian<i64>> for &i64
sourceimpl Mul<NativeEndian<i64>> for NativeEndian<i64>
impl Mul<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Mul<NativeEndian<i64>> for &NativeEndian<i64>
impl Mul<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Mul<NativeEndian<u128>> for u128
impl Mul<NativeEndian<u128>> for u128
sourceimpl Mul<NativeEndian<u128>> for &u128
impl Mul<NativeEndian<u128>> for &u128
sourceimpl Mul<NativeEndian<u128>> for NativeEndian<u128>
impl Mul<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Mul<NativeEndian<u128>> for &NativeEndian<u128>
impl Mul<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Mul<NativeEndian<u16>> for u16
impl Mul<NativeEndian<u16>> for u16
sourceimpl Mul<NativeEndian<u16>> for &u16
impl Mul<NativeEndian<u16>> for &u16
sourceimpl Mul<NativeEndian<u16>> for NativeEndian<u16>
impl Mul<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Mul<NativeEndian<u16>> for &NativeEndian<u16>
impl Mul<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Mul<NativeEndian<u32>> for u32
impl Mul<NativeEndian<u32>> for u32
sourceimpl Mul<NativeEndian<u32>> for &u32
impl Mul<NativeEndian<u32>> for &u32
sourceimpl Mul<NativeEndian<u32>> for NativeEndian<u32>
impl Mul<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Mul<NativeEndian<u32>> for &NativeEndian<u32>
impl Mul<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Mul<NativeEndian<u64>> for u64
impl Mul<NativeEndian<u64>> for u64
sourceimpl Mul<NativeEndian<u64>> for &u64
impl Mul<NativeEndian<u64>> for &u64
sourceimpl Mul<NativeEndian<u64>> for NativeEndian<u64>
impl Mul<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Mul<NativeEndian<u64>> for &NativeEndian<u64>
impl Mul<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Mul<f32> for NativeEndian<f32>
impl Mul<f32> for NativeEndian<f32>
sourceimpl Mul<f32> for &NativeEndian<f32>
impl Mul<f32> for &NativeEndian<f32>
sourceimpl Mul<f64> for NativeEndian<f64>
impl Mul<f64> for NativeEndian<f64>
sourceimpl Mul<f64> for &NativeEndian<f64>
impl Mul<f64> for &NativeEndian<f64>
sourceimpl Mul<i128> for NativeEndian<i128>
impl Mul<i128> for NativeEndian<i128>
sourceimpl Mul<i128> for &NativeEndian<i128>
impl Mul<i128> for &NativeEndian<i128>
sourceimpl Mul<i16> for NativeEndian<i16>
impl Mul<i16> for NativeEndian<i16>
sourceimpl Mul<i16> for &NativeEndian<i16>
impl Mul<i16> for &NativeEndian<i16>
sourceimpl Mul<i32> for NativeEndian<i32>
impl Mul<i32> for NativeEndian<i32>
sourceimpl Mul<i32> for &NativeEndian<i32>
impl Mul<i32> for &NativeEndian<i32>
sourceimpl Mul<i64> for NativeEndian<i64>
impl Mul<i64> for NativeEndian<i64>
sourceimpl Mul<i64> for &NativeEndian<i64>
impl Mul<i64> for &NativeEndian<i64>
sourceimpl Mul<u128> for NativeEndian<u128>
impl Mul<u128> for NativeEndian<u128>
sourceimpl Mul<u128> for &NativeEndian<u128>
impl Mul<u128> for &NativeEndian<u128>
sourceimpl Mul<u16> for NativeEndian<u16>
impl Mul<u16> for NativeEndian<u16>
sourceimpl Mul<u16> for &NativeEndian<u16>
impl Mul<u16> for &NativeEndian<u16>
sourceimpl Mul<u32> for NativeEndian<u32>
impl Mul<u32> for NativeEndian<u32>
sourceimpl Mul<u32> for &NativeEndian<u32>
impl Mul<u32> for &NativeEndian<u32>
sourceimpl Mul<u64> for NativeEndian<u64>
impl Mul<u64> for NativeEndian<u64>
sourceimpl Mul<u64> for &NativeEndian<u64>
impl Mul<u64> for &NativeEndian<u64>
sourceimpl MulAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl MulAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourcefn mul_assign(&mut self, other: &NativeEndian<f32>)
fn mul_assign(&mut self, other: &NativeEndian<f32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl MulAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourcefn mul_assign(&mut self, other: &NativeEndian<f64>)
fn mul_assign(&mut self, other: &NativeEndian<f64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl MulAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn mul_assign(&mut self, other: &NativeEndian<i128>)
fn mul_assign(&mut self, other: &NativeEndian<i128>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl MulAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn mul_assign(&mut self, other: &NativeEndian<i16>)
fn mul_assign(&mut self, other: &NativeEndian<i16>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl MulAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn mul_assign(&mut self, other: &NativeEndian<i32>)
fn mul_assign(&mut self, other: &NativeEndian<i32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl MulAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn mul_assign(&mut self, other: &NativeEndian<i64>)
fn mul_assign(&mut self, other: &NativeEndian<i64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl MulAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn mul_assign(&mut self, other: &NativeEndian<u128>)
fn mul_assign(&mut self, other: &NativeEndian<u128>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl MulAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn mul_assign(&mut self, other: &NativeEndian<u16>)
fn mul_assign(&mut self, other: &NativeEndian<u16>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl MulAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn mul_assign(&mut self, other: &NativeEndian<u32>)
fn mul_assign(&mut self, other: &NativeEndian<u32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl MulAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn mul_assign(&mut self, other: &NativeEndian<u64>)
fn mul_assign(&mut self, other: &NativeEndian<u64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ f32> for NativeEndian<f32>
impl MulAssign<&'_ f32> for NativeEndian<f32>
sourcefn mul_assign(&mut self, other: &f32)
fn mul_assign(&mut self, other: &f32)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ f64> for NativeEndian<f64>
impl MulAssign<&'_ f64> for NativeEndian<f64>
sourcefn mul_assign(&mut self, other: &f64)
fn mul_assign(&mut self, other: &f64)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ i128> for NativeEndian<i128>
impl MulAssign<&'_ i128> for NativeEndian<i128>
sourcefn mul_assign(&mut self, other: &i128)
fn mul_assign(&mut self, other: &i128)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ i16> for NativeEndian<i16>
impl MulAssign<&'_ i16> for NativeEndian<i16>
sourcefn mul_assign(&mut self, other: &i16)
fn mul_assign(&mut self, other: &i16)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ i32> for NativeEndian<i32>
impl MulAssign<&'_ i32> for NativeEndian<i32>
sourcefn mul_assign(&mut self, other: &i32)
fn mul_assign(&mut self, other: &i32)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ i64> for NativeEndian<i64>
impl MulAssign<&'_ i64> for NativeEndian<i64>
sourcefn mul_assign(&mut self, other: &i64)
fn mul_assign(&mut self, other: &i64)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ u128> for NativeEndian<u128>
impl MulAssign<&'_ u128> for NativeEndian<u128>
sourcefn mul_assign(&mut self, other: &u128)
fn mul_assign(&mut self, other: &u128)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ u16> for NativeEndian<u16>
impl MulAssign<&'_ u16> for NativeEndian<u16>
sourcefn mul_assign(&mut self, other: &u16)
fn mul_assign(&mut self, other: &u16)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ u32> for NativeEndian<u32>
impl MulAssign<&'_ u32> for NativeEndian<u32>
sourcefn mul_assign(&mut self, other: &u32)
fn mul_assign(&mut self, other: &u32)
Performs the *=
operation. Read more
sourceimpl MulAssign<&'_ u64> for NativeEndian<u64>
impl MulAssign<&'_ u64> for NativeEndian<u64>
sourcefn mul_assign(&mut self, other: &u64)
fn mul_assign(&mut self, other: &u64)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<f32>> for NativeEndian<f32>
impl MulAssign<NativeEndian<f32>> for NativeEndian<f32>
sourcefn mul_assign(&mut self, other: NativeEndian<f32>)
fn mul_assign(&mut self, other: NativeEndian<f32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<f64>> for NativeEndian<f64>
impl MulAssign<NativeEndian<f64>> for NativeEndian<f64>
sourcefn mul_assign(&mut self, other: NativeEndian<f64>)
fn mul_assign(&mut self, other: NativeEndian<f64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<i128>> for NativeEndian<i128>
impl MulAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn mul_assign(&mut self, other: NativeEndian<i128>)
fn mul_assign(&mut self, other: NativeEndian<i128>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<i16>> for NativeEndian<i16>
impl MulAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn mul_assign(&mut self, other: NativeEndian<i16>)
fn mul_assign(&mut self, other: NativeEndian<i16>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<i32>> for NativeEndian<i32>
impl MulAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn mul_assign(&mut self, other: NativeEndian<i32>)
fn mul_assign(&mut self, other: NativeEndian<i32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<i64>> for NativeEndian<i64>
impl MulAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn mul_assign(&mut self, other: NativeEndian<i64>)
fn mul_assign(&mut self, other: NativeEndian<i64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<u128>> for NativeEndian<u128>
impl MulAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn mul_assign(&mut self, other: NativeEndian<u128>)
fn mul_assign(&mut self, other: NativeEndian<u128>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<u16>> for NativeEndian<u16>
impl MulAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn mul_assign(&mut self, other: NativeEndian<u16>)
fn mul_assign(&mut self, other: NativeEndian<u16>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<u32>> for NativeEndian<u32>
impl MulAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn mul_assign(&mut self, other: NativeEndian<u32>)
fn mul_assign(&mut self, other: NativeEndian<u32>)
Performs the *=
operation. Read more
sourceimpl MulAssign<NativeEndian<u64>> for NativeEndian<u64>
impl MulAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn mul_assign(&mut self, other: NativeEndian<u64>)
fn mul_assign(&mut self, other: NativeEndian<u64>)
Performs the *=
operation. Read more
sourceimpl MulAssign<f32> for NativeEndian<f32>
impl MulAssign<f32> for NativeEndian<f32>
sourcefn mul_assign(&mut self, other: f32)
fn mul_assign(&mut self, other: f32)
Performs the *=
operation. Read more
sourceimpl MulAssign<f64> for NativeEndian<f64>
impl MulAssign<f64> for NativeEndian<f64>
sourcefn mul_assign(&mut self, other: f64)
fn mul_assign(&mut self, other: f64)
Performs the *=
operation. Read more
sourceimpl MulAssign<i128> for NativeEndian<i128>
impl MulAssign<i128> for NativeEndian<i128>
sourcefn mul_assign(&mut self, other: i128)
fn mul_assign(&mut self, other: i128)
Performs the *=
operation. Read more
sourceimpl MulAssign<i16> for NativeEndian<i16>
impl MulAssign<i16> for NativeEndian<i16>
sourcefn mul_assign(&mut self, other: i16)
fn mul_assign(&mut self, other: i16)
Performs the *=
operation. Read more
sourceimpl MulAssign<i32> for NativeEndian<i32>
impl MulAssign<i32> for NativeEndian<i32>
sourcefn mul_assign(&mut self, other: i32)
fn mul_assign(&mut self, other: i32)
Performs the *=
operation. Read more
sourceimpl MulAssign<i64> for NativeEndian<i64>
impl MulAssign<i64> for NativeEndian<i64>
sourcefn mul_assign(&mut self, other: i64)
fn mul_assign(&mut self, other: i64)
Performs the *=
operation. Read more
sourceimpl MulAssign<u128> for NativeEndian<u128>
impl MulAssign<u128> for NativeEndian<u128>
sourcefn mul_assign(&mut self, other: u128)
fn mul_assign(&mut self, other: u128)
Performs the *=
operation. Read more
sourceimpl MulAssign<u16> for NativeEndian<u16>
impl MulAssign<u16> for NativeEndian<u16>
sourcefn mul_assign(&mut self, other: u16)
fn mul_assign(&mut self, other: u16)
Performs the *=
operation. Read more
sourceimpl MulAssign<u32> for NativeEndian<u32>
impl MulAssign<u32> for NativeEndian<u32>
sourcefn mul_assign(&mut self, other: u32)
fn mul_assign(&mut self, other: u32)
Performs the *=
operation. Read more
sourceimpl MulAssign<u64> for NativeEndian<u64>
impl MulAssign<u64> for NativeEndian<u64>
sourcefn mul_assign(&mut self, other: u64)
fn mul_assign(&mut self, other: u64)
Performs the *=
operation. Read more
sourceimpl Neg for NativeEndian<i16>
impl Neg for NativeEndian<i16>
sourceimpl Neg for NativeEndian<i32>
impl Neg for NativeEndian<i32>
sourceimpl Neg for NativeEndian<i64>
impl Neg for NativeEndian<i64>
sourceimpl Neg for NativeEndian<i128>
impl Neg for NativeEndian<i128>
sourceimpl Neg for NativeEndian<f32>
impl Neg for NativeEndian<f32>
sourceimpl Neg for NativeEndian<f64>
impl Neg for NativeEndian<f64>
sourceimpl Not for NativeEndian<i16>
impl Not for NativeEndian<i16>
sourceimpl Not for NativeEndian<i32>
impl Not for NativeEndian<i32>
sourceimpl Not for NativeEndian<i64>
impl Not for NativeEndian<i64>
sourceimpl Not for NativeEndian<i128>
impl Not for NativeEndian<i128>
sourceimpl Not for NativeEndian<u16>
impl Not for NativeEndian<u16>
sourceimpl Not for NativeEndian<u32>
impl Not for NativeEndian<u32>
sourceimpl Not for NativeEndian<u64>
impl Not for NativeEndian<u64>
sourceimpl Not for NativeEndian<u128>
impl Not for NativeEndian<u128>
sourceimpl Octal for NativeEndian<i16>
impl Octal for NativeEndian<i16>
sourceimpl Octal for NativeEndian<i32>
impl Octal for NativeEndian<i32>
sourceimpl Octal for NativeEndian<NonZeroI64>
impl Octal for NativeEndian<NonZeroI64>
sourceimpl Octal for NativeEndian<NonZeroI128>
impl Octal for NativeEndian<NonZeroI128>
sourceimpl Octal for NativeEndian<NonZeroU16>
impl Octal for NativeEndian<NonZeroU16>
sourceimpl Octal for NativeEndian<NonZeroU32>
impl Octal for NativeEndian<NonZeroU32>
sourceimpl Octal for NativeEndian<NonZeroU64>
impl Octal for NativeEndian<NonZeroU64>
sourceimpl Octal for NativeEndian<NonZeroU128>
impl Octal for NativeEndian<NonZeroU128>
sourceimpl Octal for NativeEndian<i64>
impl Octal for NativeEndian<i64>
sourceimpl Octal for NativeEndian<i128>
impl Octal for NativeEndian<i128>
sourceimpl Octal for NativeEndian<u16>
impl Octal for NativeEndian<u16>
sourceimpl Octal for NativeEndian<u32>
impl Octal for NativeEndian<u32>
sourceimpl Octal for NativeEndian<u64>
impl Octal for NativeEndian<u64>
sourceimpl Octal for NativeEndian<u128>
impl Octal for NativeEndian<u128>
sourceimpl Octal for NativeEndian<NonZeroI16>
impl Octal for NativeEndian<NonZeroI16>
sourceimpl Octal for NativeEndian<NonZeroI32>
impl Octal for NativeEndian<NonZeroI32>
sourceimpl Ord for NativeEndian<i16>
impl Ord for NativeEndian<i16>
sourceimpl Ord for NativeEndian<i32>
impl Ord for NativeEndian<i32>
sourceimpl Ord for NativeEndian<NonZeroI32>
impl Ord for NativeEndian<NonZeroI32>
sourceimpl Ord for NativeEndian<NonZeroI64>
impl Ord for NativeEndian<NonZeroI64>
sourceimpl Ord for NativeEndian<NonZeroI128>
impl Ord for NativeEndian<NonZeroI128>
sourceimpl Ord for NativeEndian<NonZeroU16>
impl Ord for NativeEndian<NonZeroU16>
sourceimpl Ord for NativeEndian<NonZeroU32>
impl Ord for NativeEndian<NonZeroU32>
sourceimpl Ord for NativeEndian<NonZeroU64>
impl Ord for NativeEndian<NonZeroU64>
sourceimpl Ord for NativeEndian<NonZeroU128>
impl Ord for NativeEndian<NonZeroU128>
sourceimpl Ord for NativeEndian<i64>
impl Ord for NativeEndian<i64>
sourceimpl Ord for NativeEndian<i128>
impl Ord for NativeEndian<i128>
sourceimpl Ord for NativeEndian<u16>
impl Ord for NativeEndian<u16>
sourceimpl Ord for NativeEndian<u32>
impl Ord for NativeEndian<u32>
sourceimpl Ord for NativeEndian<u64>
impl Ord for NativeEndian<u64>
sourceimpl Ord for NativeEndian<u128>
impl Ord for NativeEndian<u128>
sourceimpl Ord for NativeEndian<char>
impl Ord for NativeEndian<char>
sourceimpl Ord for NativeEndian<NonZeroI16>
impl Ord for NativeEndian<NonZeroI16>
sourceimpl PartialEq<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
impl PartialEq<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
sourceimpl PartialEq<NativeEndian<NonZeroI128>> for NonZeroI128
impl PartialEq<NativeEndian<NonZeroI128>> for NonZeroI128
sourcefn eq(&self, other: &NativeEndian<NonZeroI128>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroI128>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
impl PartialEq<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
sourceimpl PartialEq<NativeEndian<NonZeroI16>> for NonZeroI16
impl PartialEq<NativeEndian<NonZeroI16>> for NonZeroI16
sourcefn eq(&self, other: &NativeEndian<NonZeroI16>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroI16>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
impl PartialEq<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
sourceimpl PartialEq<NativeEndian<NonZeroI32>> for NonZeroI32
impl PartialEq<NativeEndian<NonZeroI32>> for NonZeroI32
sourcefn eq(&self, other: &NativeEndian<NonZeroI32>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroI32>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
impl PartialEq<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
sourceimpl PartialEq<NativeEndian<NonZeroI64>> for NonZeroI64
impl PartialEq<NativeEndian<NonZeroI64>> for NonZeroI64
sourcefn eq(&self, other: &NativeEndian<NonZeroI64>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroI64>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
impl PartialEq<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
sourceimpl PartialEq<NativeEndian<NonZeroU128>> for NonZeroU128
impl PartialEq<NativeEndian<NonZeroU128>> for NonZeroU128
sourcefn eq(&self, other: &NativeEndian<NonZeroU128>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroU128>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
impl PartialEq<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
sourceimpl PartialEq<NativeEndian<NonZeroU16>> for NonZeroU16
impl PartialEq<NativeEndian<NonZeroU16>> for NonZeroU16
sourcefn eq(&self, other: &NativeEndian<NonZeroU16>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroU16>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
impl PartialEq<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
sourceimpl PartialEq<NativeEndian<NonZeroU32>> for NonZeroU32
impl PartialEq<NativeEndian<NonZeroU32>> for NonZeroU32
sourcefn eq(&self, other: &NativeEndian<NonZeroU32>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroU32>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
impl PartialEq<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
sourceimpl PartialEq<NativeEndian<NonZeroU64>> for NonZeroU64
impl PartialEq<NativeEndian<NonZeroU64>> for NonZeroU64
sourcefn eq(&self, other: &NativeEndian<NonZeroU64>) -> bool
fn eq(&self, other: &NativeEndian<NonZeroU64>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialEq<NativeEndian<char>> for NativeEndian<char>
impl PartialEq<NativeEndian<char>> for NativeEndian<char>
sourceimpl PartialEq<NativeEndian<char>> for char
impl PartialEq<NativeEndian<char>> for char
sourceimpl PartialEq<NativeEndian<f32>> for NativeEndian<f32>
impl PartialEq<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl PartialEq<NativeEndian<f32>> for f32
impl PartialEq<NativeEndian<f32>> for f32
sourceimpl PartialEq<NativeEndian<f64>> for NativeEndian<f64>
impl PartialEq<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl PartialEq<NativeEndian<f64>> for f64
impl PartialEq<NativeEndian<f64>> for f64
sourceimpl PartialEq<NativeEndian<i128>> for NativeEndian<i128>
impl PartialEq<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl PartialEq<NativeEndian<i128>> for i128
impl PartialEq<NativeEndian<i128>> for i128
sourceimpl PartialEq<NativeEndian<i16>> for NativeEndian<i16>
impl PartialEq<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl PartialEq<NativeEndian<i16>> for i16
impl PartialEq<NativeEndian<i16>> for i16
sourceimpl PartialEq<NativeEndian<i32>> for NativeEndian<i32>
impl PartialEq<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl PartialEq<NativeEndian<i32>> for i32
impl PartialEq<NativeEndian<i32>> for i32
sourceimpl PartialEq<NativeEndian<i64>> for NativeEndian<i64>
impl PartialEq<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl PartialEq<NativeEndian<i64>> for i64
impl PartialEq<NativeEndian<i64>> for i64
sourceimpl PartialEq<NativeEndian<u128>> for NativeEndian<u128>
impl PartialEq<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl PartialEq<NativeEndian<u128>> for u128
impl PartialEq<NativeEndian<u128>> for u128
sourceimpl PartialEq<NativeEndian<u16>> for NativeEndian<u16>
impl PartialEq<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl PartialEq<NativeEndian<u16>> for u16
impl PartialEq<NativeEndian<u16>> for u16
sourceimpl PartialEq<NativeEndian<u32>> for NativeEndian<u32>
impl PartialEq<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl PartialEq<NativeEndian<u32>> for u32
impl PartialEq<NativeEndian<u32>> for u32
sourceimpl PartialEq<NativeEndian<u64>> for NativeEndian<u64>
impl PartialEq<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl PartialEq<NativeEndian<u64>> for u64
impl PartialEq<NativeEndian<u64>> for u64
sourceimpl PartialEq<NonZeroI128> for NativeEndian<NonZeroI128>
impl PartialEq<NonZeroI128> for NativeEndian<NonZeroI128>
sourceimpl PartialEq<NonZeroI16> for NativeEndian<NonZeroI16>
impl PartialEq<NonZeroI16> for NativeEndian<NonZeroI16>
sourceimpl PartialEq<NonZeroI32> for NativeEndian<NonZeroI32>
impl PartialEq<NonZeroI32> for NativeEndian<NonZeroI32>
sourceimpl PartialEq<NonZeroI64> for NativeEndian<NonZeroI64>
impl PartialEq<NonZeroI64> for NativeEndian<NonZeroI64>
sourceimpl PartialEq<NonZeroU128> for NativeEndian<NonZeroU128>
impl PartialEq<NonZeroU128> for NativeEndian<NonZeroU128>
sourceimpl PartialEq<NonZeroU16> for NativeEndian<NonZeroU16>
impl PartialEq<NonZeroU16> for NativeEndian<NonZeroU16>
sourceimpl PartialEq<NonZeroU32> for NativeEndian<NonZeroU32>
impl PartialEq<NonZeroU32> for NativeEndian<NonZeroU32>
sourceimpl PartialEq<NonZeroU64> for NativeEndian<NonZeroU64>
impl PartialEq<NonZeroU64> for NativeEndian<NonZeroU64>
sourceimpl PartialEq<char> for NativeEndian<char>
impl PartialEq<char> for NativeEndian<char>
sourceimpl PartialEq<f32> for NativeEndian<f32>
impl PartialEq<f32> for NativeEndian<f32>
sourceimpl PartialEq<f64> for NativeEndian<f64>
impl PartialEq<f64> for NativeEndian<f64>
sourceimpl PartialEq<i128> for NativeEndian<i128>
impl PartialEq<i128> for NativeEndian<i128>
sourceimpl PartialEq<i16> for NativeEndian<i16>
impl PartialEq<i16> for NativeEndian<i16>
sourceimpl PartialEq<i32> for NativeEndian<i32>
impl PartialEq<i32> for NativeEndian<i32>
sourceimpl PartialEq<i64> for NativeEndian<i64>
impl PartialEq<i64> for NativeEndian<i64>
sourceimpl PartialEq<u128> for NativeEndian<u128>
impl PartialEq<u128> for NativeEndian<u128>
sourceimpl PartialEq<u16> for NativeEndian<u16>
impl PartialEq<u16> for NativeEndian<u16>
sourceimpl PartialEq<u32> for NativeEndian<u32>
impl PartialEq<u32> for NativeEndian<u32>
sourceimpl PartialEq<u64> for NativeEndian<u64>
impl PartialEq<u64> for NativeEndian<u64>
sourceimpl PartialOrd<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
impl PartialOrd<NativeEndian<NonZeroI128>> for NativeEndian<NonZeroI128>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
impl PartialOrd<NativeEndian<NonZeroI16>> for NativeEndian<NonZeroI16>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
impl PartialOrd<NativeEndian<NonZeroI32>> for NativeEndian<NonZeroI32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
impl PartialOrd<NativeEndian<NonZeroI64>> for NativeEndian<NonZeroI64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
impl PartialOrd<NativeEndian<NonZeroU128>> for NativeEndian<NonZeroU128>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
impl PartialOrd<NativeEndian<NonZeroU16>> for NativeEndian<NonZeroU16>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
impl PartialOrd<NativeEndian<NonZeroU32>> for NativeEndian<NonZeroU32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
impl PartialOrd<NativeEndian<NonZeroU64>> for NativeEndian<NonZeroU64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<char>> for NativeEndian<char>
impl PartialOrd<NativeEndian<char>> for NativeEndian<char>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<f32>> for NativeEndian<f32>
impl PartialOrd<NativeEndian<f32>> for NativeEndian<f32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<f64>> for NativeEndian<f64>
impl PartialOrd<NativeEndian<f64>> for NativeEndian<f64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<i128>> for NativeEndian<i128>
impl PartialOrd<NativeEndian<i128>> for NativeEndian<i128>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<i16>> for NativeEndian<i16>
impl PartialOrd<NativeEndian<i16>> for NativeEndian<i16>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<i32>> for NativeEndian<i32>
impl PartialOrd<NativeEndian<i32>> for NativeEndian<i32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<i64>> for NativeEndian<i64>
impl PartialOrd<NativeEndian<i64>> for NativeEndian<i64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<u128>> for NativeEndian<u128>
impl PartialOrd<NativeEndian<u128>> for NativeEndian<u128>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<u16>> for NativeEndian<u16>
impl PartialOrd<NativeEndian<u16>> for NativeEndian<u16>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<u32>> for NativeEndian<u32>
impl PartialOrd<NativeEndian<u32>> for NativeEndian<u32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NativeEndian<u64>> for NativeEndian<u64>
impl PartialOrd<NativeEndian<u64>> for NativeEndian<u64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroI128> for NativeEndian<NonZeroI128>
impl PartialOrd<NonZeroI128> for NativeEndian<NonZeroI128>
sourcefn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI128) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroI16> for NativeEndian<NonZeroI16>
impl PartialOrd<NonZeroI16> for NativeEndian<NonZeroI16>
sourcefn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI16) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroI32> for NativeEndian<NonZeroI32>
impl PartialOrd<NonZeroI32> for NativeEndian<NonZeroI32>
sourcefn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroI64> for NativeEndian<NonZeroI64>
impl PartialOrd<NonZeroI64> for NativeEndian<NonZeroI64>
sourcefn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroI64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroU128> for NativeEndian<NonZeroU128>
impl PartialOrd<NonZeroU128> for NativeEndian<NonZeroU128>
sourcefn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU128) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroU16> for NativeEndian<NonZeroU16>
impl PartialOrd<NonZeroU16> for NativeEndian<NonZeroU16>
sourcefn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU16) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroU32> for NativeEndian<NonZeroU32>
impl PartialOrd<NonZeroU32> for NativeEndian<NonZeroU32>
sourcefn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<NonZeroU64> for NativeEndian<NonZeroU64>
impl PartialOrd<NonZeroU64> for NativeEndian<NonZeroU64>
sourcefn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>
fn partial_cmp(&self, other: &NonZeroU64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<char> for NativeEndian<char>
impl PartialOrd<char> for NativeEndian<char>
sourcefn partial_cmp(&self, other: &char) -> Option<Ordering>
fn partial_cmp(&self, other: &char) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<f32> for NativeEndian<f32>
impl PartialOrd<f32> for NativeEndian<f32>
sourcefn partial_cmp(&self, other: &f32) -> Option<Ordering>
fn partial_cmp(&self, other: &f32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<f64> for NativeEndian<f64>
impl PartialOrd<f64> for NativeEndian<f64>
sourcefn partial_cmp(&self, other: &f64) -> Option<Ordering>
fn partial_cmp(&self, other: &f64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<i128> for NativeEndian<i128>
impl PartialOrd<i128> for NativeEndian<i128>
sourcefn partial_cmp(&self, other: &i128) -> Option<Ordering>
fn partial_cmp(&self, other: &i128) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<i16> for NativeEndian<i16>
impl PartialOrd<i16> for NativeEndian<i16>
sourcefn partial_cmp(&self, other: &i16) -> Option<Ordering>
fn partial_cmp(&self, other: &i16) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<i32> for NativeEndian<i32>
impl PartialOrd<i32> for NativeEndian<i32>
sourcefn partial_cmp(&self, other: &i32) -> Option<Ordering>
fn partial_cmp(&self, other: &i32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<i64> for NativeEndian<i64>
impl PartialOrd<i64> for NativeEndian<i64>
sourcefn partial_cmp(&self, other: &i64) -> Option<Ordering>
fn partial_cmp(&self, other: &i64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<u128> for NativeEndian<u128>
impl PartialOrd<u128> for NativeEndian<u128>
sourcefn partial_cmp(&self, other: &u128) -> Option<Ordering>
fn partial_cmp(&self, other: &u128) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<u16> for NativeEndian<u16>
impl PartialOrd<u16> for NativeEndian<u16>
sourcefn partial_cmp(&self, other: &u16) -> Option<Ordering>
fn partial_cmp(&self, other: &u16) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<u32> for NativeEndian<u32>
impl PartialOrd<u32> for NativeEndian<u32>
sourcefn partial_cmp(&self, other: &u32) -> Option<Ordering>
fn partial_cmp(&self, other: &u32) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<u64> for NativeEndian<u64>
impl PartialOrd<u64> for NativeEndian<u64>
sourcefn partial_cmp(&self, other: &u64) -> Option<Ordering>
fn partial_cmp(&self, other: &u64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Product<NativeEndian<f32>> for NativeEndian<f32>
impl Product<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Product<NativeEndian<f64>> for NativeEndian<f64>
impl Product<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Product<NativeEndian<i128>> for NativeEndian<i128>
impl Product<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Product<NativeEndian<i16>> for NativeEndian<i16>
impl Product<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Product<NativeEndian<i32>> for NativeEndian<i32>
impl Product<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Product<NativeEndian<i64>> for NativeEndian<i64>
impl Product<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Product<NativeEndian<u128>> for NativeEndian<u128>
impl Product<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Product<NativeEndian<u16>> for NativeEndian<u16>
impl Product<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Product<NativeEndian<u32>> for NativeEndian<u32>
impl Product<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Product<NativeEndian<u64>> for NativeEndian<u64>
impl Product<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Rem<&'_ NativeEndian<f32>> for f32
impl Rem<&'_ NativeEndian<f32>> for f32
sourceimpl Rem<&'_ NativeEndian<f32>> for &f32
impl Rem<&'_ NativeEndian<f32>> for &f32
sourceimpl Rem<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl Rem<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Rem<&'_ NativeEndian<f32>> for &NativeEndian<f32>
impl Rem<&'_ NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Rem<&'_ NativeEndian<f64>> for f64
impl Rem<&'_ NativeEndian<f64>> for f64
sourceimpl Rem<&'_ NativeEndian<f64>> for &f64
impl Rem<&'_ NativeEndian<f64>> for &f64
sourceimpl Rem<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl Rem<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Rem<&'_ NativeEndian<f64>> for &NativeEndian<f64>
impl Rem<&'_ NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Rem<&'_ NativeEndian<i128>> for i128
impl Rem<&'_ NativeEndian<i128>> for i128
sourceimpl Rem<&'_ NativeEndian<i128>> for &i128
impl Rem<&'_ NativeEndian<i128>> for &i128
sourceimpl Rem<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Rem<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Rem<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Rem<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Rem<&'_ NativeEndian<i16>> for i16
impl Rem<&'_ NativeEndian<i16>> for i16
sourceimpl Rem<&'_ NativeEndian<i16>> for &i16
impl Rem<&'_ NativeEndian<i16>> for &i16
sourceimpl Rem<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Rem<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Rem<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Rem<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Rem<&'_ NativeEndian<i32>> for i32
impl Rem<&'_ NativeEndian<i32>> for i32
sourceimpl Rem<&'_ NativeEndian<i32>> for &i32
impl Rem<&'_ NativeEndian<i32>> for &i32
sourceimpl Rem<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Rem<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Rem<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Rem<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Rem<&'_ NativeEndian<i64>> for i64
impl Rem<&'_ NativeEndian<i64>> for i64
sourceimpl Rem<&'_ NativeEndian<i64>> for &i64
impl Rem<&'_ NativeEndian<i64>> for &i64
sourceimpl Rem<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Rem<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Rem<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Rem<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Rem<&'_ NativeEndian<u128>> for u128
impl Rem<&'_ NativeEndian<u128>> for u128
sourceimpl Rem<&'_ NativeEndian<u128>> for &u128
impl Rem<&'_ NativeEndian<u128>> for &u128
sourceimpl Rem<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Rem<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Rem<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Rem<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Rem<&'_ NativeEndian<u16>> for u16
impl Rem<&'_ NativeEndian<u16>> for u16
sourceimpl Rem<&'_ NativeEndian<u16>> for &u16
impl Rem<&'_ NativeEndian<u16>> for &u16
sourceimpl Rem<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Rem<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Rem<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Rem<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Rem<&'_ NativeEndian<u32>> for u32
impl Rem<&'_ NativeEndian<u32>> for u32
sourceimpl Rem<&'_ NativeEndian<u32>> for &u32
impl Rem<&'_ NativeEndian<u32>> for &u32
sourceimpl Rem<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Rem<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Rem<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Rem<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Rem<&'_ NativeEndian<u64>> for u64
impl Rem<&'_ NativeEndian<u64>> for u64
sourceimpl Rem<&'_ NativeEndian<u64>> for &u64
impl Rem<&'_ NativeEndian<u64>> for &u64
sourceimpl Rem<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Rem<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Rem<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Rem<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Rem<&'_ f32> for NativeEndian<f32>
impl Rem<&'_ f32> for NativeEndian<f32>
sourceimpl Rem<&'_ f32> for &NativeEndian<f32>
impl Rem<&'_ f32> for &NativeEndian<f32>
sourceimpl Rem<&'_ f64> for NativeEndian<f64>
impl Rem<&'_ f64> for NativeEndian<f64>
sourceimpl Rem<&'_ f64> for &NativeEndian<f64>
impl Rem<&'_ f64> for &NativeEndian<f64>
sourceimpl Rem<&'_ i128> for NativeEndian<i128>
impl Rem<&'_ i128> for NativeEndian<i128>
sourceimpl Rem<&'_ i128> for &NativeEndian<i128>
impl Rem<&'_ i128> for &NativeEndian<i128>
sourceimpl Rem<&'_ i16> for NativeEndian<i16>
impl Rem<&'_ i16> for NativeEndian<i16>
sourceimpl Rem<&'_ i16> for &NativeEndian<i16>
impl Rem<&'_ i16> for &NativeEndian<i16>
sourceimpl Rem<&'_ i32> for NativeEndian<i32>
impl Rem<&'_ i32> for NativeEndian<i32>
sourceimpl Rem<&'_ i32> for &NativeEndian<i32>
impl Rem<&'_ i32> for &NativeEndian<i32>
sourceimpl Rem<&'_ i64> for NativeEndian<i64>
impl Rem<&'_ i64> for NativeEndian<i64>
sourceimpl Rem<&'_ i64> for &NativeEndian<i64>
impl Rem<&'_ i64> for &NativeEndian<i64>
sourceimpl Rem<&'_ u128> for NativeEndian<u128>
impl Rem<&'_ u128> for NativeEndian<u128>
sourceimpl Rem<&'_ u128> for &NativeEndian<u128>
impl Rem<&'_ u128> for &NativeEndian<u128>
sourceimpl Rem<&'_ u16> for NativeEndian<u16>
impl Rem<&'_ u16> for NativeEndian<u16>
sourceimpl Rem<&'_ u16> for &NativeEndian<u16>
impl Rem<&'_ u16> for &NativeEndian<u16>
sourceimpl Rem<&'_ u32> for NativeEndian<u32>
impl Rem<&'_ u32> for NativeEndian<u32>
sourceimpl Rem<&'_ u32> for &NativeEndian<u32>
impl Rem<&'_ u32> for &NativeEndian<u32>
sourceimpl Rem<&'_ u64> for NativeEndian<u64>
impl Rem<&'_ u64> for NativeEndian<u64>
sourceimpl Rem<&'_ u64> for &NativeEndian<u64>
impl Rem<&'_ u64> for &NativeEndian<u64>
sourceimpl Rem<NativeEndian<f32>> for f32
impl Rem<NativeEndian<f32>> for f32
sourceimpl Rem<NativeEndian<f32>> for &f32
impl Rem<NativeEndian<f32>> for &f32
sourceimpl Rem<NativeEndian<f32>> for NativeEndian<f32>
impl Rem<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Rem<NativeEndian<f32>> for &NativeEndian<f32>
impl Rem<NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Rem<NativeEndian<f64>> for f64
impl Rem<NativeEndian<f64>> for f64
sourceimpl Rem<NativeEndian<f64>> for &f64
impl Rem<NativeEndian<f64>> for &f64
sourceimpl Rem<NativeEndian<f64>> for NativeEndian<f64>
impl Rem<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Rem<NativeEndian<f64>> for &NativeEndian<f64>
impl Rem<NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Rem<NativeEndian<i128>> for i128
impl Rem<NativeEndian<i128>> for i128
sourceimpl Rem<NativeEndian<i128>> for &i128
impl Rem<NativeEndian<i128>> for &i128
sourceimpl Rem<NativeEndian<i128>> for NativeEndian<i128>
impl Rem<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Rem<NativeEndian<i128>> for &NativeEndian<i128>
impl Rem<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Rem<NativeEndian<i16>> for i16
impl Rem<NativeEndian<i16>> for i16
sourceimpl Rem<NativeEndian<i16>> for &i16
impl Rem<NativeEndian<i16>> for &i16
sourceimpl Rem<NativeEndian<i16>> for NativeEndian<i16>
impl Rem<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Rem<NativeEndian<i16>> for &NativeEndian<i16>
impl Rem<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Rem<NativeEndian<i32>> for i32
impl Rem<NativeEndian<i32>> for i32
sourceimpl Rem<NativeEndian<i32>> for &i32
impl Rem<NativeEndian<i32>> for &i32
sourceimpl Rem<NativeEndian<i32>> for NativeEndian<i32>
impl Rem<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Rem<NativeEndian<i32>> for &NativeEndian<i32>
impl Rem<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Rem<NativeEndian<i64>> for i64
impl Rem<NativeEndian<i64>> for i64
sourceimpl Rem<NativeEndian<i64>> for &i64
impl Rem<NativeEndian<i64>> for &i64
sourceimpl Rem<NativeEndian<i64>> for NativeEndian<i64>
impl Rem<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Rem<NativeEndian<i64>> for &NativeEndian<i64>
impl Rem<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Rem<NativeEndian<u128>> for u128
impl Rem<NativeEndian<u128>> for u128
sourceimpl Rem<NativeEndian<u128>> for &u128
impl Rem<NativeEndian<u128>> for &u128
sourceimpl Rem<NativeEndian<u128>> for NativeEndian<u128>
impl Rem<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Rem<NativeEndian<u128>> for &NativeEndian<u128>
impl Rem<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Rem<NativeEndian<u16>> for u16
impl Rem<NativeEndian<u16>> for u16
sourceimpl Rem<NativeEndian<u16>> for &u16
impl Rem<NativeEndian<u16>> for &u16
sourceimpl Rem<NativeEndian<u16>> for NativeEndian<u16>
impl Rem<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Rem<NativeEndian<u16>> for &NativeEndian<u16>
impl Rem<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Rem<NativeEndian<u32>> for u32
impl Rem<NativeEndian<u32>> for u32
sourceimpl Rem<NativeEndian<u32>> for &u32
impl Rem<NativeEndian<u32>> for &u32
sourceimpl Rem<NativeEndian<u32>> for NativeEndian<u32>
impl Rem<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Rem<NativeEndian<u32>> for &NativeEndian<u32>
impl Rem<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Rem<NativeEndian<u64>> for u64
impl Rem<NativeEndian<u64>> for u64
sourceimpl Rem<NativeEndian<u64>> for &u64
impl Rem<NativeEndian<u64>> for &u64
sourceimpl Rem<NativeEndian<u64>> for NativeEndian<u64>
impl Rem<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Rem<NativeEndian<u64>> for &NativeEndian<u64>
impl Rem<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Rem<f32> for NativeEndian<f32>
impl Rem<f32> for NativeEndian<f32>
sourceimpl Rem<f32> for &NativeEndian<f32>
impl Rem<f32> for &NativeEndian<f32>
sourceimpl Rem<f64> for NativeEndian<f64>
impl Rem<f64> for NativeEndian<f64>
sourceimpl Rem<f64> for &NativeEndian<f64>
impl Rem<f64> for &NativeEndian<f64>
sourceimpl Rem<i128> for NativeEndian<i128>
impl Rem<i128> for NativeEndian<i128>
sourceimpl Rem<i128> for &NativeEndian<i128>
impl Rem<i128> for &NativeEndian<i128>
sourceimpl Rem<i16> for NativeEndian<i16>
impl Rem<i16> for NativeEndian<i16>
sourceimpl Rem<i16> for &NativeEndian<i16>
impl Rem<i16> for &NativeEndian<i16>
sourceimpl Rem<i32> for NativeEndian<i32>
impl Rem<i32> for NativeEndian<i32>
sourceimpl Rem<i32> for &NativeEndian<i32>
impl Rem<i32> for &NativeEndian<i32>
sourceimpl Rem<i64> for NativeEndian<i64>
impl Rem<i64> for NativeEndian<i64>
sourceimpl Rem<i64> for &NativeEndian<i64>
impl Rem<i64> for &NativeEndian<i64>
sourceimpl Rem<u128> for NativeEndian<u128>
impl Rem<u128> for NativeEndian<u128>
sourceimpl Rem<u128> for &NativeEndian<u128>
impl Rem<u128> for &NativeEndian<u128>
sourceimpl Rem<u16> for NativeEndian<u16>
impl Rem<u16> for NativeEndian<u16>
sourceimpl Rem<u16> for &NativeEndian<u16>
impl Rem<u16> for &NativeEndian<u16>
sourceimpl Rem<u32> for NativeEndian<u32>
impl Rem<u32> for NativeEndian<u32>
sourceimpl Rem<u32> for &NativeEndian<u32>
impl Rem<u32> for &NativeEndian<u32>
sourceimpl Rem<u64> for NativeEndian<u64>
impl Rem<u64> for NativeEndian<u64>
sourceimpl Rem<u64> for &NativeEndian<u64>
impl Rem<u64> for &NativeEndian<u64>
sourceimpl RemAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl RemAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourcefn rem_assign(&mut self, other: &NativeEndian<f32>)
fn rem_assign(&mut self, other: &NativeEndian<f32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl RemAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourcefn rem_assign(&mut self, other: &NativeEndian<f64>)
fn rem_assign(&mut self, other: &NativeEndian<f64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl RemAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn rem_assign(&mut self, other: &NativeEndian<i128>)
fn rem_assign(&mut self, other: &NativeEndian<i128>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl RemAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn rem_assign(&mut self, other: &NativeEndian<i16>)
fn rem_assign(&mut self, other: &NativeEndian<i16>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl RemAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn rem_assign(&mut self, other: &NativeEndian<i32>)
fn rem_assign(&mut self, other: &NativeEndian<i32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl RemAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn rem_assign(&mut self, other: &NativeEndian<i64>)
fn rem_assign(&mut self, other: &NativeEndian<i64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl RemAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn rem_assign(&mut self, other: &NativeEndian<u128>)
fn rem_assign(&mut self, other: &NativeEndian<u128>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl RemAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn rem_assign(&mut self, other: &NativeEndian<u16>)
fn rem_assign(&mut self, other: &NativeEndian<u16>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl RemAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn rem_assign(&mut self, other: &NativeEndian<u32>)
fn rem_assign(&mut self, other: &NativeEndian<u32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl RemAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn rem_assign(&mut self, other: &NativeEndian<u64>)
fn rem_assign(&mut self, other: &NativeEndian<u64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ f32> for NativeEndian<f32>
impl RemAssign<&'_ f32> for NativeEndian<f32>
sourcefn rem_assign(&mut self, other: &f32)
fn rem_assign(&mut self, other: &f32)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ f64> for NativeEndian<f64>
impl RemAssign<&'_ f64> for NativeEndian<f64>
sourcefn rem_assign(&mut self, other: &f64)
fn rem_assign(&mut self, other: &f64)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ i128> for NativeEndian<i128>
impl RemAssign<&'_ i128> for NativeEndian<i128>
sourcefn rem_assign(&mut self, other: &i128)
fn rem_assign(&mut self, other: &i128)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ i16> for NativeEndian<i16>
impl RemAssign<&'_ i16> for NativeEndian<i16>
sourcefn rem_assign(&mut self, other: &i16)
fn rem_assign(&mut self, other: &i16)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ i32> for NativeEndian<i32>
impl RemAssign<&'_ i32> for NativeEndian<i32>
sourcefn rem_assign(&mut self, other: &i32)
fn rem_assign(&mut self, other: &i32)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ i64> for NativeEndian<i64>
impl RemAssign<&'_ i64> for NativeEndian<i64>
sourcefn rem_assign(&mut self, other: &i64)
fn rem_assign(&mut self, other: &i64)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ u128> for NativeEndian<u128>
impl RemAssign<&'_ u128> for NativeEndian<u128>
sourcefn rem_assign(&mut self, other: &u128)
fn rem_assign(&mut self, other: &u128)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ u16> for NativeEndian<u16>
impl RemAssign<&'_ u16> for NativeEndian<u16>
sourcefn rem_assign(&mut self, other: &u16)
fn rem_assign(&mut self, other: &u16)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ u32> for NativeEndian<u32>
impl RemAssign<&'_ u32> for NativeEndian<u32>
sourcefn rem_assign(&mut self, other: &u32)
fn rem_assign(&mut self, other: &u32)
Performs the %=
operation. Read more
sourceimpl RemAssign<&'_ u64> for NativeEndian<u64>
impl RemAssign<&'_ u64> for NativeEndian<u64>
sourcefn rem_assign(&mut self, other: &u64)
fn rem_assign(&mut self, other: &u64)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<f32>> for NativeEndian<f32>
impl RemAssign<NativeEndian<f32>> for NativeEndian<f32>
sourcefn rem_assign(&mut self, other: NativeEndian<f32>)
fn rem_assign(&mut self, other: NativeEndian<f32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<f64>> for NativeEndian<f64>
impl RemAssign<NativeEndian<f64>> for NativeEndian<f64>
sourcefn rem_assign(&mut self, other: NativeEndian<f64>)
fn rem_assign(&mut self, other: NativeEndian<f64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<i128>> for NativeEndian<i128>
impl RemAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn rem_assign(&mut self, other: NativeEndian<i128>)
fn rem_assign(&mut self, other: NativeEndian<i128>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<i16>> for NativeEndian<i16>
impl RemAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn rem_assign(&mut self, other: NativeEndian<i16>)
fn rem_assign(&mut self, other: NativeEndian<i16>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<i32>> for NativeEndian<i32>
impl RemAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn rem_assign(&mut self, other: NativeEndian<i32>)
fn rem_assign(&mut self, other: NativeEndian<i32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<i64>> for NativeEndian<i64>
impl RemAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn rem_assign(&mut self, other: NativeEndian<i64>)
fn rem_assign(&mut self, other: NativeEndian<i64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<u128>> for NativeEndian<u128>
impl RemAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn rem_assign(&mut self, other: NativeEndian<u128>)
fn rem_assign(&mut self, other: NativeEndian<u128>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<u16>> for NativeEndian<u16>
impl RemAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn rem_assign(&mut self, other: NativeEndian<u16>)
fn rem_assign(&mut self, other: NativeEndian<u16>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<u32>> for NativeEndian<u32>
impl RemAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn rem_assign(&mut self, other: NativeEndian<u32>)
fn rem_assign(&mut self, other: NativeEndian<u32>)
Performs the %=
operation. Read more
sourceimpl RemAssign<NativeEndian<u64>> for NativeEndian<u64>
impl RemAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn rem_assign(&mut self, other: NativeEndian<u64>)
fn rem_assign(&mut self, other: NativeEndian<u64>)
Performs the %=
operation. Read more
sourceimpl RemAssign<f32> for NativeEndian<f32>
impl RemAssign<f32> for NativeEndian<f32>
sourcefn rem_assign(&mut self, other: f32)
fn rem_assign(&mut self, other: f32)
Performs the %=
operation. Read more
sourceimpl RemAssign<f64> for NativeEndian<f64>
impl RemAssign<f64> for NativeEndian<f64>
sourcefn rem_assign(&mut self, other: f64)
fn rem_assign(&mut self, other: f64)
Performs the %=
operation. Read more
sourceimpl RemAssign<i128> for NativeEndian<i128>
impl RemAssign<i128> for NativeEndian<i128>
sourcefn rem_assign(&mut self, other: i128)
fn rem_assign(&mut self, other: i128)
Performs the %=
operation. Read more
sourceimpl RemAssign<i16> for NativeEndian<i16>
impl RemAssign<i16> for NativeEndian<i16>
sourcefn rem_assign(&mut self, other: i16)
fn rem_assign(&mut self, other: i16)
Performs the %=
operation. Read more
sourceimpl RemAssign<i32> for NativeEndian<i32>
impl RemAssign<i32> for NativeEndian<i32>
sourcefn rem_assign(&mut self, other: i32)
fn rem_assign(&mut self, other: i32)
Performs the %=
operation. Read more
sourceimpl RemAssign<i64> for NativeEndian<i64>
impl RemAssign<i64> for NativeEndian<i64>
sourcefn rem_assign(&mut self, other: i64)
fn rem_assign(&mut self, other: i64)
Performs the %=
operation. Read more
sourceimpl RemAssign<u128> for NativeEndian<u128>
impl RemAssign<u128> for NativeEndian<u128>
sourcefn rem_assign(&mut self, other: u128)
fn rem_assign(&mut self, other: u128)
Performs the %=
operation. Read more
sourceimpl RemAssign<u16> for NativeEndian<u16>
impl RemAssign<u16> for NativeEndian<u16>
sourcefn rem_assign(&mut self, other: u16)
fn rem_assign(&mut self, other: u16)
Performs the %=
operation. Read more
sourceimpl RemAssign<u32> for NativeEndian<u32>
impl RemAssign<u32> for NativeEndian<u32>
sourcefn rem_assign(&mut self, other: u32)
fn rem_assign(&mut self, other: u32)
Performs the %=
operation. Read more
sourceimpl RemAssign<u64> for NativeEndian<u64>
impl RemAssign<u64> for NativeEndian<u64>
sourcefn rem_assign(&mut self, other: u64)
fn rem_assign(&mut self, other: u64)
Performs the %=
operation. Read more
sourceimpl Shl<&'_ NativeEndian<i128>> for i128
impl Shl<&'_ NativeEndian<i128>> for i128
sourceimpl Shl<&'_ NativeEndian<i128>> for &i128
impl Shl<&'_ NativeEndian<i128>> for &i128
sourceimpl Shl<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Shl<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Shl<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Shl<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Shl<&'_ NativeEndian<i16>> for i16
impl Shl<&'_ NativeEndian<i16>> for i16
sourceimpl Shl<&'_ NativeEndian<i16>> for &i16
impl Shl<&'_ NativeEndian<i16>> for &i16
sourceimpl Shl<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Shl<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Shl<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Shl<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Shl<&'_ NativeEndian<i32>> for i32
impl Shl<&'_ NativeEndian<i32>> for i32
sourceimpl Shl<&'_ NativeEndian<i32>> for &i32
impl Shl<&'_ NativeEndian<i32>> for &i32
sourceimpl Shl<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Shl<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Shl<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Shl<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Shl<&'_ NativeEndian<i64>> for i64
impl Shl<&'_ NativeEndian<i64>> for i64
sourceimpl Shl<&'_ NativeEndian<i64>> for &i64
impl Shl<&'_ NativeEndian<i64>> for &i64
sourceimpl Shl<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Shl<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Shl<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Shl<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Shl<&'_ NativeEndian<u128>> for u128
impl Shl<&'_ NativeEndian<u128>> for u128
sourceimpl Shl<&'_ NativeEndian<u128>> for &u128
impl Shl<&'_ NativeEndian<u128>> for &u128
sourceimpl Shl<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Shl<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Shl<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Shl<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Shl<&'_ NativeEndian<u16>> for u16
impl Shl<&'_ NativeEndian<u16>> for u16
sourceimpl Shl<&'_ NativeEndian<u16>> for &u16
impl Shl<&'_ NativeEndian<u16>> for &u16
sourceimpl Shl<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Shl<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Shl<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Shl<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Shl<&'_ NativeEndian<u32>> for u32
impl Shl<&'_ NativeEndian<u32>> for u32
sourceimpl Shl<&'_ NativeEndian<u32>> for &u32
impl Shl<&'_ NativeEndian<u32>> for &u32
sourceimpl Shl<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Shl<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Shl<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Shl<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Shl<&'_ NativeEndian<u64>> for u64
impl Shl<&'_ NativeEndian<u64>> for u64
sourceimpl Shl<&'_ NativeEndian<u64>> for &u64
impl Shl<&'_ NativeEndian<u64>> for &u64
sourceimpl Shl<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Shl<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Shl<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Shl<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Shl<&'_ i128> for NativeEndian<i128>
impl Shl<&'_ i128> for NativeEndian<i128>
sourceimpl Shl<&'_ i128> for &NativeEndian<i128>
impl Shl<&'_ i128> for &NativeEndian<i128>
sourceimpl Shl<&'_ i16> for NativeEndian<i16>
impl Shl<&'_ i16> for NativeEndian<i16>
sourceimpl Shl<&'_ i16> for &NativeEndian<i16>
impl Shl<&'_ i16> for &NativeEndian<i16>
sourceimpl Shl<&'_ i32> for NativeEndian<i32>
impl Shl<&'_ i32> for NativeEndian<i32>
sourceimpl Shl<&'_ i32> for &NativeEndian<i32>
impl Shl<&'_ i32> for &NativeEndian<i32>
sourceimpl Shl<&'_ i64> for NativeEndian<i64>
impl Shl<&'_ i64> for NativeEndian<i64>
sourceimpl Shl<&'_ i64> for &NativeEndian<i64>
impl Shl<&'_ i64> for &NativeEndian<i64>
sourceimpl Shl<&'_ u128> for NativeEndian<u128>
impl Shl<&'_ u128> for NativeEndian<u128>
sourceimpl Shl<&'_ u128> for &NativeEndian<u128>
impl Shl<&'_ u128> for &NativeEndian<u128>
sourceimpl Shl<&'_ u16> for NativeEndian<u16>
impl Shl<&'_ u16> for NativeEndian<u16>
sourceimpl Shl<&'_ u16> for &NativeEndian<u16>
impl Shl<&'_ u16> for &NativeEndian<u16>
sourceimpl Shl<&'_ u32> for NativeEndian<u32>
impl Shl<&'_ u32> for NativeEndian<u32>
sourceimpl Shl<&'_ u32> for &NativeEndian<u32>
impl Shl<&'_ u32> for &NativeEndian<u32>
sourceimpl Shl<&'_ u64> for NativeEndian<u64>
impl Shl<&'_ u64> for NativeEndian<u64>
sourceimpl Shl<&'_ u64> for &NativeEndian<u64>
impl Shl<&'_ u64> for &NativeEndian<u64>
sourceimpl Shl<NativeEndian<i128>> for i128
impl Shl<NativeEndian<i128>> for i128
sourceimpl Shl<NativeEndian<i128>> for &i128
impl Shl<NativeEndian<i128>> for &i128
sourceimpl Shl<NativeEndian<i128>> for NativeEndian<i128>
impl Shl<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Shl<NativeEndian<i128>> for &NativeEndian<i128>
impl Shl<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Shl<NativeEndian<i16>> for i16
impl Shl<NativeEndian<i16>> for i16
sourceimpl Shl<NativeEndian<i16>> for &i16
impl Shl<NativeEndian<i16>> for &i16
sourceimpl Shl<NativeEndian<i16>> for NativeEndian<i16>
impl Shl<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Shl<NativeEndian<i16>> for &NativeEndian<i16>
impl Shl<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Shl<NativeEndian<i32>> for i32
impl Shl<NativeEndian<i32>> for i32
sourceimpl Shl<NativeEndian<i32>> for &i32
impl Shl<NativeEndian<i32>> for &i32
sourceimpl Shl<NativeEndian<i32>> for NativeEndian<i32>
impl Shl<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Shl<NativeEndian<i32>> for &NativeEndian<i32>
impl Shl<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Shl<NativeEndian<i64>> for i64
impl Shl<NativeEndian<i64>> for i64
sourceimpl Shl<NativeEndian<i64>> for &i64
impl Shl<NativeEndian<i64>> for &i64
sourceimpl Shl<NativeEndian<i64>> for NativeEndian<i64>
impl Shl<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Shl<NativeEndian<i64>> for &NativeEndian<i64>
impl Shl<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Shl<NativeEndian<u128>> for u128
impl Shl<NativeEndian<u128>> for u128
sourceimpl Shl<NativeEndian<u128>> for &u128
impl Shl<NativeEndian<u128>> for &u128
sourceimpl Shl<NativeEndian<u128>> for NativeEndian<u128>
impl Shl<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Shl<NativeEndian<u128>> for &NativeEndian<u128>
impl Shl<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Shl<NativeEndian<u16>> for u16
impl Shl<NativeEndian<u16>> for u16
sourceimpl Shl<NativeEndian<u16>> for &u16
impl Shl<NativeEndian<u16>> for &u16
sourceimpl Shl<NativeEndian<u16>> for NativeEndian<u16>
impl Shl<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Shl<NativeEndian<u16>> for &NativeEndian<u16>
impl Shl<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Shl<NativeEndian<u32>> for u32
impl Shl<NativeEndian<u32>> for u32
sourceimpl Shl<NativeEndian<u32>> for &u32
impl Shl<NativeEndian<u32>> for &u32
sourceimpl Shl<NativeEndian<u32>> for NativeEndian<u32>
impl Shl<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Shl<NativeEndian<u32>> for &NativeEndian<u32>
impl Shl<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Shl<NativeEndian<u64>> for u64
impl Shl<NativeEndian<u64>> for u64
sourceimpl Shl<NativeEndian<u64>> for &u64
impl Shl<NativeEndian<u64>> for &u64
sourceimpl Shl<NativeEndian<u64>> for NativeEndian<u64>
impl Shl<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Shl<NativeEndian<u64>> for &NativeEndian<u64>
impl Shl<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Shl<i128> for NativeEndian<i128>
impl Shl<i128> for NativeEndian<i128>
sourceimpl Shl<i128> for &NativeEndian<i128>
impl Shl<i128> for &NativeEndian<i128>
sourceimpl Shl<i16> for NativeEndian<i16>
impl Shl<i16> for NativeEndian<i16>
sourceimpl Shl<i16> for &NativeEndian<i16>
impl Shl<i16> for &NativeEndian<i16>
sourceimpl Shl<i32> for NativeEndian<i32>
impl Shl<i32> for NativeEndian<i32>
sourceimpl Shl<i32> for &NativeEndian<i32>
impl Shl<i32> for &NativeEndian<i32>
sourceimpl Shl<i64> for NativeEndian<i64>
impl Shl<i64> for NativeEndian<i64>
sourceimpl Shl<i64> for &NativeEndian<i64>
impl Shl<i64> for &NativeEndian<i64>
sourceimpl Shl<u128> for NativeEndian<u128>
impl Shl<u128> for NativeEndian<u128>
sourceimpl Shl<u128> for &NativeEndian<u128>
impl Shl<u128> for &NativeEndian<u128>
sourceimpl Shl<u16> for NativeEndian<u16>
impl Shl<u16> for NativeEndian<u16>
sourceimpl Shl<u16> for &NativeEndian<u16>
impl Shl<u16> for &NativeEndian<u16>
sourceimpl Shl<u32> for NativeEndian<u32>
impl Shl<u32> for NativeEndian<u32>
sourceimpl Shl<u32> for &NativeEndian<u32>
impl Shl<u32> for &NativeEndian<u32>
sourceimpl Shl<u64> for NativeEndian<u64>
impl Shl<u64> for NativeEndian<u64>
sourceimpl Shl<u64> for &NativeEndian<u64>
impl Shl<u64> for &NativeEndian<u64>
sourceimpl ShlAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl ShlAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn shl_assign(&mut self, other: &NativeEndian<i128>)
fn shl_assign(&mut self, other: &NativeEndian<i128>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl ShlAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn shl_assign(&mut self, other: &NativeEndian<i16>)
fn shl_assign(&mut self, other: &NativeEndian<i16>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl ShlAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn shl_assign(&mut self, other: &NativeEndian<i32>)
fn shl_assign(&mut self, other: &NativeEndian<i32>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl ShlAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn shl_assign(&mut self, other: &NativeEndian<i64>)
fn shl_assign(&mut self, other: &NativeEndian<i64>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl ShlAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn shl_assign(&mut self, other: &NativeEndian<u128>)
fn shl_assign(&mut self, other: &NativeEndian<u128>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl ShlAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn shl_assign(&mut self, other: &NativeEndian<u16>)
fn shl_assign(&mut self, other: &NativeEndian<u16>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl ShlAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn shl_assign(&mut self, other: &NativeEndian<u32>)
fn shl_assign(&mut self, other: &NativeEndian<u32>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl ShlAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn shl_assign(&mut self, other: &NativeEndian<u64>)
fn shl_assign(&mut self, other: &NativeEndian<u64>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ i128> for NativeEndian<i128>
impl ShlAssign<&'_ i128> for NativeEndian<i128>
sourcefn shl_assign(&mut self, other: &i128)
fn shl_assign(&mut self, other: &i128)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ i16> for NativeEndian<i16>
impl ShlAssign<&'_ i16> for NativeEndian<i16>
sourcefn shl_assign(&mut self, other: &i16)
fn shl_assign(&mut self, other: &i16)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ i32> for NativeEndian<i32>
impl ShlAssign<&'_ i32> for NativeEndian<i32>
sourcefn shl_assign(&mut self, other: &i32)
fn shl_assign(&mut self, other: &i32)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ i64> for NativeEndian<i64>
impl ShlAssign<&'_ i64> for NativeEndian<i64>
sourcefn shl_assign(&mut self, other: &i64)
fn shl_assign(&mut self, other: &i64)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ u128> for NativeEndian<u128>
impl ShlAssign<&'_ u128> for NativeEndian<u128>
sourcefn shl_assign(&mut self, other: &u128)
fn shl_assign(&mut self, other: &u128)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ u16> for NativeEndian<u16>
impl ShlAssign<&'_ u16> for NativeEndian<u16>
sourcefn shl_assign(&mut self, other: &u16)
fn shl_assign(&mut self, other: &u16)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ u32> for NativeEndian<u32>
impl ShlAssign<&'_ u32> for NativeEndian<u32>
sourcefn shl_assign(&mut self, other: &u32)
fn shl_assign(&mut self, other: &u32)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<&'_ u64> for NativeEndian<u64>
impl ShlAssign<&'_ u64> for NativeEndian<u64>
sourcefn shl_assign(&mut self, other: &u64)
fn shl_assign(&mut self, other: &u64)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<i128>> for NativeEndian<i128>
impl ShlAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn shl_assign(&mut self, other: NativeEndian<i128>)
fn shl_assign(&mut self, other: NativeEndian<i128>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<i16>> for NativeEndian<i16>
impl ShlAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn shl_assign(&mut self, other: NativeEndian<i16>)
fn shl_assign(&mut self, other: NativeEndian<i16>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<i32>> for NativeEndian<i32>
impl ShlAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn shl_assign(&mut self, other: NativeEndian<i32>)
fn shl_assign(&mut self, other: NativeEndian<i32>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<i64>> for NativeEndian<i64>
impl ShlAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn shl_assign(&mut self, other: NativeEndian<i64>)
fn shl_assign(&mut self, other: NativeEndian<i64>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<u128>> for NativeEndian<u128>
impl ShlAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn shl_assign(&mut self, other: NativeEndian<u128>)
fn shl_assign(&mut self, other: NativeEndian<u128>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<u16>> for NativeEndian<u16>
impl ShlAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn shl_assign(&mut self, other: NativeEndian<u16>)
fn shl_assign(&mut self, other: NativeEndian<u16>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<u32>> for NativeEndian<u32>
impl ShlAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn shl_assign(&mut self, other: NativeEndian<u32>)
fn shl_assign(&mut self, other: NativeEndian<u32>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<NativeEndian<u64>> for NativeEndian<u64>
impl ShlAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn shl_assign(&mut self, other: NativeEndian<u64>)
fn shl_assign(&mut self, other: NativeEndian<u64>)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<i128> for NativeEndian<i128>
impl ShlAssign<i128> for NativeEndian<i128>
sourcefn shl_assign(&mut self, other: i128)
fn shl_assign(&mut self, other: i128)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<i16> for NativeEndian<i16>
impl ShlAssign<i16> for NativeEndian<i16>
sourcefn shl_assign(&mut self, other: i16)
fn shl_assign(&mut self, other: i16)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<i32> for NativeEndian<i32>
impl ShlAssign<i32> for NativeEndian<i32>
sourcefn shl_assign(&mut self, other: i32)
fn shl_assign(&mut self, other: i32)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<i64> for NativeEndian<i64>
impl ShlAssign<i64> for NativeEndian<i64>
sourcefn shl_assign(&mut self, other: i64)
fn shl_assign(&mut self, other: i64)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<u128> for NativeEndian<u128>
impl ShlAssign<u128> for NativeEndian<u128>
sourcefn shl_assign(&mut self, other: u128)
fn shl_assign(&mut self, other: u128)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<u16> for NativeEndian<u16>
impl ShlAssign<u16> for NativeEndian<u16>
sourcefn shl_assign(&mut self, other: u16)
fn shl_assign(&mut self, other: u16)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<u32> for NativeEndian<u32>
impl ShlAssign<u32> for NativeEndian<u32>
sourcefn shl_assign(&mut self, other: u32)
fn shl_assign(&mut self, other: u32)
Performs the <<=
operation. Read more
sourceimpl ShlAssign<u64> for NativeEndian<u64>
impl ShlAssign<u64> for NativeEndian<u64>
sourcefn shl_assign(&mut self, other: u64)
fn shl_assign(&mut self, other: u64)
Performs the <<=
operation. Read more
sourceimpl Shr<&'_ NativeEndian<i128>> for i128
impl Shr<&'_ NativeEndian<i128>> for i128
sourceimpl Shr<&'_ NativeEndian<i128>> for &i128
impl Shr<&'_ NativeEndian<i128>> for &i128
sourceimpl Shr<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Shr<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Shr<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Shr<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Shr<&'_ NativeEndian<i16>> for i16
impl Shr<&'_ NativeEndian<i16>> for i16
sourceimpl Shr<&'_ NativeEndian<i16>> for &i16
impl Shr<&'_ NativeEndian<i16>> for &i16
sourceimpl Shr<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Shr<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Shr<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Shr<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Shr<&'_ NativeEndian<i32>> for i32
impl Shr<&'_ NativeEndian<i32>> for i32
sourceimpl Shr<&'_ NativeEndian<i32>> for &i32
impl Shr<&'_ NativeEndian<i32>> for &i32
sourceimpl Shr<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Shr<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Shr<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Shr<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Shr<&'_ NativeEndian<i64>> for i64
impl Shr<&'_ NativeEndian<i64>> for i64
sourceimpl Shr<&'_ NativeEndian<i64>> for &i64
impl Shr<&'_ NativeEndian<i64>> for &i64
sourceimpl Shr<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Shr<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Shr<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Shr<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Shr<&'_ NativeEndian<u128>> for u128
impl Shr<&'_ NativeEndian<u128>> for u128
sourceimpl Shr<&'_ NativeEndian<u128>> for &u128
impl Shr<&'_ NativeEndian<u128>> for &u128
sourceimpl Shr<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Shr<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Shr<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Shr<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Shr<&'_ NativeEndian<u16>> for u16
impl Shr<&'_ NativeEndian<u16>> for u16
sourceimpl Shr<&'_ NativeEndian<u16>> for &u16
impl Shr<&'_ NativeEndian<u16>> for &u16
sourceimpl Shr<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Shr<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Shr<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Shr<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Shr<&'_ NativeEndian<u32>> for u32
impl Shr<&'_ NativeEndian<u32>> for u32
sourceimpl Shr<&'_ NativeEndian<u32>> for &u32
impl Shr<&'_ NativeEndian<u32>> for &u32
sourceimpl Shr<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Shr<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Shr<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Shr<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Shr<&'_ NativeEndian<u64>> for u64
impl Shr<&'_ NativeEndian<u64>> for u64
sourceimpl Shr<&'_ NativeEndian<u64>> for &u64
impl Shr<&'_ NativeEndian<u64>> for &u64
sourceimpl Shr<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Shr<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Shr<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Shr<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Shr<&'_ i128> for NativeEndian<i128>
impl Shr<&'_ i128> for NativeEndian<i128>
sourceimpl Shr<&'_ i128> for &NativeEndian<i128>
impl Shr<&'_ i128> for &NativeEndian<i128>
sourceimpl Shr<&'_ i16> for NativeEndian<i16>
impl Shr<&'_ i16> for NativeEndian<i16>
sourceimpl Shr<&'_ i16> for &NativeEndian<i16>
impl Shr<&'_ i16> for &NativeEndian<i16>
sourceimpl Shr<&'_ i32> for NativeEndian<i32>
impl Shr<&'_ i32> for NativeEndian<i32>
sourceimpl Shr<&'_ i32> for &NativeEndian<i32>
impl Shr<&'_ i32> for &NativeEndian<i32>
sourceimpl Shr<&'_ i64> for NativeEndian<i64>
impl Shr<&'_ i64> for NativeEndian<i64>
sourceimpl Shr<&'_ i64> for &NativeEndian<i64>
impl Shr<&'_ i64> for &NativeEndian<i64>
sourceimpl Shr<&'_ u128> for NativeEndian<u128>
impl Shr<&'_ u128> for NativeEndian<u128>
sourceimpl Shr<&'_ u128> for &NativeEndian<u128>
impl Shr<&'_ u128> for &NativeEndian<u128>
sourceimpl Shr<&'_ u16> for NativeEndian<u16>
impl Shr<&'_ u16> for NativeEndian<u16>
sourceimpl Shr<&'_ u16> for &NativeEndian<u16>
impl Shr<&'_ u16> for &NativeEndian<u16>
sourceimpl Shr<&'_ u32> for NativeEndian<u32>
impl Shr<&'_ u32> for NativeEndian<u32>
sourceimpl Shr<&'_ u32> for &NativeEndian<u32>
impl Shr<&'_ u32> for &NativeEndian<u32>
sourceimpl Shr<&'_ u64> for NativeEndian<u64>
impl Shr<&'_ u64> for NativeEndian<u64>
sourceimpl Shr<&'_ u64> for &NativeEndian<u64>
impl Shr<&'_ u64> for &NativeEndian<u64>
sourceimpl Shr<NativeEndian<i128>> for i128
impl Shr<NativeEndian<i128>> for i128
sourceimpl Shr<NativeEndian<i128>> for &i128
impl Shr<NativeEndian<i128>> for &i128
sourceimpl Shr<NativeEndian<i128>> for NativeEndian<i128>
impl Shr<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Shr<NativeEndian<i128>> for &NativeEndian<i128>
impl Shr<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Shr<NativeEndian<i16>> for i16
impl Shr<NativeEndian<i16>> for i16
sourceimpl Shr<NativeEndian<i16>> for &i16
impl Shr<NativeEndian<i16>> for &i16
sourceimpl Shr<NativeEndian<i16>> for NativeEndian<i16>
impl Shr<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Shr<NativeEndian<i16>> for &NativeEndian<i16>
impl Shr<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Shr<NativeEndian<i32>> for i32
impl Shr<NativeEndian<i32>> for i32
sourceimpl Shr<NativeEndian<i32>> for &i32
impl Shr<NativeEndian<i32>> for &i32
sourceimpl Shr<NativeEndian<i32>> for NativeEndian<i32>
impl Shr<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Shr<NativeEndian<i32>> for &NativeEndian<i32>
impl Shr<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Shr<NativeEndian<i64>> for i64
impl Shr<NativeEndian<i64>> for i64
sourceimpl Shr<NativeEndian<i64>> for &i64
impl Shr<NativeEndian<i64>> for &i64
sourceimpl Shr<NativeEndian<i64>> for NativeEndian<i64>
impl Shr<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Shr<NativeEndian<i64>> for &NativeEndian<i64>
impl Shr<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Shr<NativeEndian<u128>> for u128
impl Shr<NativeEndian<u128>> for u128
sourceimpl Shr<NativeEndian<u128>> for &u128
impl Shr<NativeEndian<u128>> for &u128
sourceimpl Shr<NativeEndian<u128>> for NativeEndian<u128>
impl Shr<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Shr<NativeEndian<u128>> for &NativeEndian<u128>
impl Shr<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Shr<NativeEndian<u16>> for u16
impl Shr<NativeEndian<u16>> for u16
sourceimpl Shr<NativeEndian<u16>> for &u16
impl Shr<NativeEndian<u16>> for &u16
sourceimpl Shr<NativeEndian<u16>> for NativeEndian<u16>
impl Shr<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Shr<NativeEndian<u16>> for &NativeEndian<u16>
impl Shr<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Shr<NativeEndian<u32>> for u32
impl Shr<NativeEndian<u32>> for u32
sourceimpl Shr<NativeEndian<u32>> for &u32
impl Shr<NativeEndian<u32>> for &u32
sourceimpl Shr<NativeEndian<u32>> for NativeEndian<u32>
impl Shr<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Shr<NativeEndian<u32>> for &NativeEndian<u32>
impl Shr<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Shr<NativeEndian<u64>> for u64
impl Shr<NativeEndian<u64>> for u64
sourceimpl Shr<NativeEndian<u64>> for &u64
impl Shr<NativeEndian<u64>> for &u64
sourceimpl Shr<NativeEndian<u64>> for NativeEndian<u64>
impl Shr<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Shr<NativeEndian<u64>> for &NativeEndian<u64>
impl Shr<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Shr<i128> for NativeEndian<i128>
impl Shr<i128> for NativeEndian<i128>
sourceimpl Shr<i128> for &NativeEndian<i128>
impl Shr<i128> for &NativeEndian<i128>
sourceimpl Shr<i16> for NativeEndian<i16>
impl Shr<i16> for NativeEndian<i16>
sourceimpl Shr<i16> for &NativeEndian<i16>
impl Shr<i16> for &NativeEndian<i16>
sourceimpl Shr<i32> for NativeEndian<i32>
impl Shr<i32> for NativeEndian<i32>
sourceimpl Shr<i32> for &NativeEndian<i32>
impl Shr<i32> for &NativeEndian<i32>
sourceimpl Shr<i64> for NativeEndian<i64>
impl Shr<i64> for NativeEndian<i64>
sourceimpl Shr<i64> for &NativeEndian<i64>
impl Shr<i64> for &NativeEndian<i64>
sourceimpl Shr<u128> for NativeEndian<u128>
impl Shr<u128> for NativeEndian<u128>
sourceimpl Shr<u128> for &NativeEndian<u128>
impl Shr<u128> for &NativeEndian<u128>
sourceimpl Shr<u16> for NativeEndian<u16>
impl Shr<u16> for NativeEndian<u16>
sourceimpl Shr<u16> for &NativeEndian<u16>
impl Shr<u16> for &NativeEndian<u16>
sourceimpl Shr<u32> for NativeEndian<u32>
impl Shr<u32> for NativeEndian<u32>
sourceimpl Shr<u32> for &NativeEndian<u32>
impl Shr<u32> for &NativeEndian<u32>
sourceimpl Shr<u64> for NativeEndian<u64>
impl Shr<u64> for NativeEndian<u64>
sourceimpl Shr<u64> for &NativeEndian<u64>
impl Shr<u64> for &NativeEndian<u64>
sourceimpl ShrAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl ShrAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn shr_assign(&mut self, other: &NativeEndian<i128>)
fn shr_assign(&mut self, other: &NativeEndian<i128>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl ShrAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn shr_assign(&mut self, other: &NativeEndian<i16>)
fn shr_assign(&mut self, other: &NativeEndian<i16>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl ShrAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn shr_assign(&mut self, other: &NativeEndian<i32>)
fn shr_assign(&mut self, other: &NativeEndian<i32>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl ShrAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn shr_assign(&mut self, other: &NativeEndian<i64>)
fn shr_assign(&mut self, other: &NativeEndian<i64>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl ShrAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn shr_assign(&mut self, other: &NativeEndian<u128>)
fn shr_assign(&mut self, other: &NativeEndian<u128>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl ShrAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn shr_assign(&mut self, other: &NativeEndian<u16>)
fn shr_assign(&mut self, other: &NativeEndian<u16>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl ShrAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn shr_assign(&mut self, other: &NativeEndian<u32>)
fn shr_assign(&mut self, other: &NativeEndian<u32>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl ShrAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn shr_assign(&mut self, other: &NativeEndian<u64>)
fn shr_assign(&mut self, other: &NativeEndian<u64>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ i128> for NativeEndian<i128>
impl ShrAssign<&'_ i128> for NativeEndian<i128>
sourcefn shr_assign(&mut self, other: &i128)
fn shr_assign(&mut self, other: &i128)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ i16> for NativeEndian<i16>
impl ShrAssign<&'_ i16> for NativeEndian<i16>
sourcefn shr_assign(&mut self, other: &i16)
fn shr_assign(&mut self, other: &i16)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ i32> for NativeEndian<i32>
impl ShrAssign<&'_ i32> for NativeEndian<i32>
sourcefn shr_assign(&mut self, other: &i32)
fn shr_assign(&mut self, other: &i32)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ i64> for NativeEndian<i64>
impl ShrAssign<&'_ i64> for NativeEndian<i64>
sourcefn shr_assign(&mut self, other: &i64)
fn shr_assign(&mut self, other: &i64)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ u128> for NativeEndian<u128>
impl ShrAssign<&'_ u128> for NativeEndian<u128>
sourcefn shr_assign(&mut self, other: &u128)
fn shr_assign(&mut self, other: &u128)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ u16> for NativeEndian<u16>
impl ShrAssign<&'_ u16> for NativeEndian<u16>
sourcefn shr_assign(&mut self, other: &u16)
fn shr_assign(&mut self, other: &u16)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ u32> for NativeEndian<u32>
impl ShrAssign<&'_ u32> for NativeEndian<u32>
sourcefn shr_assign(&mut self, other: &u32)
fn shr_assign(&mut self, other: &u32)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<&'_ u64> for NativeEndian<u64>
impl ShrAssign<&'_ u64> for NativeEndian<u64>
sourcefn shr_assign(&mut self, other: &u64)
fn shr_assign(&mut self, other: &u64)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<i128>> for NativeEndian<i128>
impl ShrAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn shr_assign(&mut self, other: NativeEndian<i128>)
fn shr_assign(&mut self, other: NativeEndian<i128>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<i16>> for NativeEndian<i16>
impl ShrAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn shr_assign(&mut self, other: NativeEndian<i16>)
fn shr_assign(&mut self, other: NativeEndian<i16>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<i32>> for NativeEndian<i32>
impl ShrAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn shr_assign(&mut self, other: NativeEndian<i32>)
fn shr_assign(&mut self, other: NativeEndian<i32>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<i64>> for NativeEndian<i64>
impl ShrAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn shr_assign(&mut self, other: NativeEndian<i64>)
fn shr_assign(&mut self, other: NativeEndian<i64>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<u128>> for NativeEndian<u128>
impl ShrAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn shr_assign(&mut self, other: NativeEndian<u128>)
fn shr_assign(&mut self, other: NativeEndian<u128>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<u16>> for NativeEndian<u16>
impl ShrAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn shr_assign(&mut self, other: NativeEndian<u16>)
fn shr_assign(&mut self, other: NativeEndian<u16>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<u32>> for NativeEndian<u32>
impl ShrAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn shr_assign(&mut self, other: NativeEndian<u32>)
fn shr_assign(&mut self, other: NativeEndian<u32>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<NativeEndian<u64>> for NativeEndian<u64>
impl ShrAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn shr_assign(&mut self, other: NativeEndian<u64>)
fn shr_assign(&mut self, other: NativeEndian<u64>)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<i128> for NativeEndian<i128>
impl ShrAssign<i128> for NativeEndian<i128>
sourcefn shr_assign(&mut self, other: i128)
fn shr_assign(&mut self, other: i128)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<i16> for NativeEndian<i16>
impl ShrAssign<i16> for NativeEndian<i16>
sourcefn shr_assign(&mut self, other: i16)
fn shr_assign(&mut self, other: i16)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<i32> for NativeEndian<i32>
impl ShrAssign<i32> for NativeEndian<i32>
sourcefn shr_assign(&mut self, other: i32)
fn shr_assign(&mut self, other: i32)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<i64> for NativeEndian<i64>
impl ShrAssign<i64> for NativeEndian<i64>
sourcefn shr_assign(&mut self, other: i64)
fn shr_assign(&mut self, other: i64)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<u128> for NativeEndian<u128>
impl ShrAssign<u128> for NativeEndian<u128>
sourcefn shr_assign(&mut self, other: u128)
fn shr_assign(&mut self, other: u128)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<u16> for NativeEndian<u16>
impl ShrAssign<u16> for NativeEndian<u16>
sourcefn shr_assign(&mut self, other: u16)
fn shr_assign(&mut self, other: u16)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<u32> for NativeEndian<u32>
impl ShrAssign<u32> for NativeEndian<u32>
sourcefn shr_assign(&mut self, other: u32)
fn shr_assign(&mut self, other: u32)
Performs the >>=
operation. Read more
sourceimpl ShrAssign<u64> for NativeEndian<u64>
impl ShrAssign<u64> for NativeEndian<u64>
sourcefn shr_assign(&mut self, other: u64)
fn shr_assign(&mut self, other: u64)
Performs the >>=
operation. Read more
sourceimpl Sub<&'_ NativeEndian<f32>> for f32
impl Sub<&'_ NativeEndian<f32>> for f32
sourceimpl Sub<&'_ NativeEndian<f32>> for &f32
impl Sub<&'_ NativeEndian<f32>> for &f32
sourceimpl Sub<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl Sub<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Sub<&'_ NativeEndian<f32>> for &NativeEndian<f32>
impl Sub<&'_ NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Sub<&'_ NativeEndian<f64>> for f64
impl Sub<&'_ NativeEndian<f64>> for f64
sourceimpl Sub<&'_ NativeEndian<f64>> for &f64
impl Sub<&'_ NativeEndian<f64>> for &f64
sourceimpl Sub<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl Sub<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Sub<&'_ NativeEndian<f64>> for &NativeEndian<f64>
impl Sub<&'_ NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Sub<&'_ NativeEndian<i128>> for i128
impl Sub<&'_ NativeEndian<i128>> for i128
sourceimpl Sub<&'_ NativeEndian<i128>> for &i128
impl Sub<&'_ NativeEndian<i128>> for &i128
sourceimpl Sub<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl Sub<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Sub<&'_ NativeEndian<i128>> for &NativeEndian<i128>
impl Sub<&'_ NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Sub<&'_ NativeEndian<i16>> for i16
impl Sub<&'_ NativeEndian<i16>> for i16
sourceimpl Sub<&'_ NativeEndian<i16>> for &i16
impl Sub<&'_ NativeEndian<i16>> for &i16
sourceimpl Sub<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl Sub<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Sub<&'_ NativeEndian<i16>> for &NativeEndian<i16>
impl Sub<&'_ NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Sub<&'_ NativeEndian<i32>> for i32
impl Sub<&'_ NativeEndian<i32>> for i32
sourceimpl Sub<&'_ NativeEndian<i32>> for &i32
impl Sub<&'_ NativeEndian<i32>> for &i32
sourceimpl Sub<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl Sub<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Sub<&'_ NativeEndian<i32>> for &NativeEndian<i32>
impl Sub<&'_ NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Sub<&'_ NativeEndian<i64>> for i64
impl Sub<&'_ NativeEndian<i64>> for i64
sourceimpl Sub<&'_ NativeEndian<i64>> for &i64
impl Sub<&'_ NativeEndian<i64>> for &i64
sourceimpl Sub<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl Sub<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Sub<&'_ NativeEndian<i64>> for &NativeEndian<i64>
impl Sub<&'_ NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Sub<&'_ NativeEndian<u128>> for u128
impl Sub<&'_ NativeEndian<u128>> for u128
sourceimpl Sub<&'_ NativeEndian<u128>> for &u128
impl Sub<&'_ NativeEndian<u128>> for &u128
sourceimpl Sub<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl Sub<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Sub<&'_ NativeEndian<u128>> for &NativeEndian<u128>
impl Sub<&'_ NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Sub<&'_ NativeEndian<u16>> for u16
impl Sub<&'_ NativeEndian<u16>> for u16
sourceimpl Sub<&'_ NativeEndian<u16>> for &u16
impl Sub<&'_ NativeEndian<u16>> for &u16
sourceimpl Sub<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl Sub<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Sub<&'_ NativeEndian<u16>> for &NativeEndian<u16>
impl Sub<&'_ NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Sub<&'_ NativeEndian<u32>> for u32
impl Sub<&'_ NativeEndian<u32>> for u32
sourceimpl Sub<&'_ NativeEndian<u32>> for &u32
impl Sub<&'_ NativeEndian<u32>> for &u32
sourceimpl Sub<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl Sub<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Sub<&'_ NativeEndian<u32>> for &NativeEndian<u32>
impl Sub<&'_ NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Sub<&'_ NativeEndian<u64>> for u64
impl Sub<&'_ NativeEndian<u64>> for u64
sourceimpl Sub<&'_ NativeEndian<u64>> for &u64
impl Sub<&'_ NativeEndian<u64>> for &u64
sourceimpl Sub<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl Sub<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Sub<&'_ NativeEndian<u64>> for &NativeEndian<u64>
impl Sub<&'_ NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Sub<&'_ f32> for NativeEndian<f32>
impl Sub<&'_ f32> for NativeEndian<f32>
sourceimpl Sub<&'_ f32> for &NativeEndian<f32>
impl Sub<&'_ f32> for &NativeEndian<f32>
sourceimpl Sub<&'_ f64> for NativeEndian<f64>
impl Sub<&'_ f64> for NativeEndian<f64>
sourceimpl Sub<&'_ f64> for &NativeEndian<f64>
impl Sub<&'_ f64> for &NativeEndian<f64>
sourceimpl Sub<&'_ i128> for NativeEndian<i128>
impl Sub<&'_ i128> for NativeEndian<i128>
sourceimpl Sub<&'_ i128> for &NativeEndian<i128>
impl Sub<&'_ i128> for &NativeEndian<i128>
sourceimpl Sub<&'_ i16> for NativeEndian<i16>
impl Sub<&'_ i16> for NativeEndian<i16>
sourceimpl Sub<&'_ i16> for &NativeEndian<i16>
impl Sub<&'_ i16> for &NativeEndian<i16>
sourceimpl Sub<&'_ i32> for NativeEndian<i32>
impl Sub<&'_ i32> for NativeEndian<i32>
sourceimpl Sub<&'_ i32> for &NativeEndian<i32>
impl Sub<&'_ i32> for &NativeEndian<i32>
sourceimpl Sub<&'_ i64> for NativeEndian<i64>
impl Sub<&'_ i64> for NativeEndian<i64>
sourceimpl Sub<&'_ i64> for &NativeEndian<i64>
impl Sub<&'_ i64> for &NativeEndian<i64>
sourceimpl Sub<&'_ u128> for NativeEndian<u128>
impl Sub<&'_ u128> for NativeEndian<u128>
sourceimpl Sub<&'_ u128> for &NativeEndian<u128>
impl Sub<&'_ u128> for &NativeEndian<u128>
sourceimpl Sub<&'_ u16> for NativeEndian<u16>
impl Sub<&'_ u16> for NativeEndian<u16>
sourceimpl Sub<&'_ u16> for &NativeEndian<u16>
impl Sub<&'_ u16> for &NativeEndian<u16>
sourceimpl Sub<&'_ u32> for NativeEndian<u32>
impl Sub<&'_ u32> for NativeEndian<u32>
sourceimpl Sub<&'_ u32> for &NativeEndian<u32>
impl Sub<&'_ u32> for &NativeEndian<u32>
sourceimpl Sub<&'_ u64> for NativeEndian<u64>
impl Sub<&'_ u64> for NativeEndian<u64>
sourceimpl Sub<&'_ u64> for &NativeEndian<u64>
impl Sub<&'_ u64> for &NativeEndian<u64>
sourceimpl Sub<NativeEndian<f32>> for f32
impl Sub<NativeEndian<f32>> for f32
sourceimpl Sub<NativeEndian<f32>> for &f32
impl Sub<NativeEndian<f32>> for &f32
sourceimpl Sub<NativeEndian<f32>> for NativeEndian<f32>
impl Sub<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Sub<NativeEndian<f32>> for &NativeEndian<f32>
impl Sub<NativeEndian<f32>> for &NativeEndian<f32>
sourceimpl Sub<NativeEndian<f64>> for f64
impl Sub<NativeEndian<f64>> for f64
sourceimpl Sub<NativeEndian<f64>> for &f64
impl Sub<NativeEndian<f64>> for &f64
sourceimpl Sub<NativeEndian<f64>> for NativeEndian<f64>
impl Sub<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Sub<NativeEndian<f64>> for &NativeEndian<f64>
impl Sub<NativeEndian<f64>> for &NativeEndian<f64>
sourceimpl Sub<NativeEndian<i128>> for i128
impl Sub<NativeEndian<i128>> for i128
sourceimpl Sub<NativeEndian<i128>> for &i128
impl Sub<NativeEndian<i128>> for &i128
sourceimpl Sub<NativeEndian<i128>> for NativeEndian<i128>
impl Sub<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Sub<NativeEndian<i128>> for &NativeEndian<i128>
impl Sub<NativeEndian<i128>> for &NativeEndian<i128>
sourceimpl Sub<NativeEndian<i16>> for i16
impl Sub<NativeEndian<i16>> for i16
sourceimpl Sub<NativeEndian<i16>> for &i16
impl Sub<NativeEndian<i16>> for &i16
sourceimpl Sub<NativeEndian<i16>> for NativeEndian<i16>
impl Sub<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Sub<NativeEndian<i16>> for &NativeEndian<i16>
impl Sub<NativeEndian<i16>> for &NativeEndian<i16>
sourceimpl Sub<NativeEndian<i32>> for i32
impl Sub<NativeEndian<i32>> for i32
sourceimpl Sub<NativeEndian<i32>> for &i32
impl Sub<NativeEndian<i32>> for &i32
sourceimpl Sub<NativeEndian<i32>> for NativeEndian<i32>
impl Sub<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Sub<NativeEndian<i32>> for &NativeEndian<i32>
impl Sub<NativeEndian<i32>> for &NativeEndian<i32>
sourceimpl Sub<NativeEndian<i64>> for i64
impl Sub<NativeEndian<i64>> for i64
sourceimpl Sub<NativeEndian<i64>> for &i64
impl Sub<NativeEndian<i64>> for &i64
sourceimpl Sub<NativeEndian<i64>> for NativeEndian<i64>
impl Sub<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Sub<NativeEndian<i64>> for &NativeEndian<i64>
impl Sub<NativeEndian<i64>> for &NativeEndian<i64>
sourceimpl Sub<NativeEndian<u128>> for u128
impl Sub<NativeEndian<u128>> for u128
sourceimpl Sub<NativeEndian<u128>> for &u128
impl Sub<NativeEndian<u128>> for &u128
sourceimpl Sub<NativeEndian<u128>> for NativeEndian<u128>
impl Sub<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Sub<NativeEndian<u128>> for &NativeEndian<u128>
impl Sub<NativeEndian<u128>> for &NativeEndian<u128>
sourceimpl Sub<NativeEndian<u16>> for u16
impl Sub<NativeEndian<u16>> for u16
sourceimpl Sub<NativeEndian<u16>> for &u16
impl Sub<NativeEndian<u16>> for &u16
sourceimpl Sub<NativeEndian<u16>> for NativeEndian<u16>
impl Sub<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Sub<NativeEndian<u16>> for &NativeEndian<u16>
impl Sub<NativeEndian<u16>> for &NativeEndian<u16>
sourceimpl Sub<NativeEndian<u32>> for u32
impl Sub<NativeEndian<u32>> for u32
sourceimpl Sub<NativeEndian<u32>> for &u32
impl Sub<NativeEndian<u32>> for &u32
sourceimpl Sub<NativeEndian<u32>> for NativeEndian<u32>
impl Sub<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Sub<NativeEndian<u32>> for &NativeEndian<u32>
impl Sub<NativeEndian<u32>> for &NativeEndian<u32>
sourceimpl Sub<NativeEndian<u64>> for u64
impl Sub<NativeEndian<u64>> for u64
sourceimpl Sub<NativeEndian<u64>> for &u64
impl Sub<NativeEndian<u64>> for &u64
sourceimpl Sub<NativeEndian<u64>> for NativeEndian<u64>
impl Sub<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl Sub<NativeEndian<u64>> for &NativeEndian<u64>
impl Sub<NativeEndian<u64>> for &NativeEndian<u64>
sourceimpl Sub<f32> for NativeEndian<f32>
impl Sub<f32> for NativeEndian<f32>
sourceimpl Sub<f32> for &NativeEndian<f32>
impl Sub<f32> for &NativeEndian<f32>
sourceimpl Sub<f64> for NativeEndian<f64>
impl Sub<f64> for NativeEndian<f64>
sourceimpl Sub<f64> for &NativeEndian<f64>
impl Sub<f64> for &NativeEndian<f64>
sourceimpl Sub<i128> for NativeEndian<i128>
impl Sub<i128> for NativeEndian<i128>
sourceimpl Sub<i128> for &NativeEndian<i128>
impl Sub<i128> for &NativeEndian<i128>
sourceimpl Sub<i16> for NativeEndian<i16>
impl Sub<i16> for NativeEndian<i16>
sourceimpl Sub<i16> for &NativeEndian<i16>
impl Sub<i16> for &NativeEndian<i16>
sourceimpl Sub<i32> for NativeEndian<i32>
impl Sub<i32> for NativeEndian<i32>
sourceimpl Sub<i32> for &NativeEndian<i32>
impl Sub<i32> for &NativeEndian<i32>
sourceimpl Sub<i64> for NativeEndian<i64>
impl Sub<i64> for NativeEndian<i64>
sourceimpl Sub<i64> for &NativeEndian<i64>
impl Sub<i64> for &NativeEndian<i64>
sourceimpl Sub<u128> for NativeEndian<u128>
impl Sub<u128> for NativeEndian<u128>
sourceimpl Sub<u128> for &NativeEndian<u128>
impl Sub<u128> for &NativeEndian<u128>
sourceimpl Sub<u16> for NativeEndian<u16>
impl Sub<u16> for NativeEndian<u16>
sourceimpl Sub<u16> for &NativeEndian<u16>
impl Sub<u16> for &NativeEndian<u16>
sourceimpl Sub<u32> for NativeEndian<u32>
impl Sub<u32> for NativeEndian<u32>
sourceimpl Sub<u32> for &NativeEndian<u32>
impl Sub<u32> for &NativeEndian<u32>
sourceimpl Sub<u64> for NativeEndian<u64>
impl Sub<u64> for NativeEndian<u64>
sourceimpl Sub<u64> for &NativeEndian<u64>
impl Sub<u64> for &NativeEndian<u64>
sourceimpl SubAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
impl SubAssign<&'_ NativeEndian<f32>> for NativeEndian<f32>
sourcefn sub_assign(&mut self, other: &NativeEndian<f32>)
fn sub_assign(&mut self, other: &NativeEndian<f32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
impl SubAssign<&'_ NativeEndian<f64>> for NativeEndian<f64>
sourcefn sub_assign(&mut self, other: &NativeEndian<f64>)
fn sub_assign(&mut self, other: &NativeEndian<f64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
impl SubAssign<&'_ NativeEndian<i128>> for NativeEndian<i128>
sourcefn sub_assign(&mut self, other: &NativeEndian<i128>)
fn sub_assign(&mut self, other: &NativeEndian<i128>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
impl SubAssign<&'_ NativeEndian<i16>> for NativeEndian<i16>
sourcefn sub_assign(&mut self, other: &NativeEndian<i16>)
fn sub_assign(&mut self, other: &NativeEndian<i16>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
impl SubAssign<&'_ NativeEndian<i32>> for NativeEndian<i32>
sourcefn sub_assign(&mut self, other: &NativeEndian<i32>)
fn sub_assign(&mut self, other: &NativeEndian<i32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
impl SubAssign<&'_ NativeEndian<i64>> for NativeEndian<i64>
sourcefn sub_assign(&mut self, other: &NativeEndian<i64>)
fn sub_assign(&mut self, other: &NativeEndian<i64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
impl SubAssign<&'_ NativeEndian<u128>> for NativeEndian<u128>
sourcefn sub_assign(&mut self, other: &NativeEndian<u128>)
fn sub_assign(&mut self, other: &NativeEndian<u128>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
impl SubAssign<&'_ NativeEndian<u16>> for NativeEndian<u16>
sourcefn sub_assign(&mut self, other: &NativeEndian<u16>)
fn sub_assign(&mut self, other: &NativeEndian<u16>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
impl SubAssign<&'_ NativeEndian<u32>> for NativeEndian<u32>
sourcefn sub_assign(&mut self, other: &NativeEndian<u32>)
fn sub_assign(&mut self, other: &NativeEndian<u32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
impl SubAssign<&'_ NativeEndian<u64>> for NativeEndian<u64>
sourcefn sub_assign(&mut self, other: &NativeEndian<u64>)
fn sub_assign(&mut self, other: &NativeEndian<u64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ f32> for NativeEndian<f32>
impl SubAssign<&'_ f32> for NativeEndian<f32>
sourcefn sub_assign(&mut self, other: &f32)
fn sub_assign(&mut self, other: &f32)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ f64> for NativeEndian<f64>
impl SubAssign<&'_ f64> for NativeEndian<f64>
sourcefn sub_assign(&mut self, other: &f64)
fn sub_assign(&mut self, other: &f64)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ i128> for NativeEndian<i128>
impl SubAssign<&'_ i128> for NativeEndian<i128>
sourcefn sub_assign(&mut self, other: &i128)
fn sub_assign(&mut self, other: &i128)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ i16> for NativeEndian<i16>
impl SubAssign<&'_ i16> for NativeEndian<i16>
sourcefn sub_assign(&mut self, other: &i16)
fn sub_assign(&mut self, other: &i16)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ i32> for NativeEndian<i32>
impl SubAssign<&'_ i32> for NativeEndian<i32>
sourcefn sub_assign(&mut self, other: &i32)
fn sub_assign(&mut self, other: &i32)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ i64> for NativeEndian<i64>
impl SubAssign<&'_ i64> for NativeEndian<i64>
sourcefn sub_assign(&mut self, other: &i64)
fn sub_assign(&mut self, other: &i64)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ u128> for NativeEndian<u128>
impl SubAssign<&'_ u128> for NativeEndian<u128>
sourcefn sub_assign(&mut self, other: &u128)
fn sub_assign(&mut self, other: &u128)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ u16> for NativeEndian<u16>
impl SubAssign<&'_ u16> for NativeEndian<u16>
sourcefn sub_assign(&mut self, other: &u16)
fn sub_assign(&mut self, other: &u16)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ u32> for NativeEndian<u32>
impl SubAssign<&'_ u32> for NativeEndian<u32>
sourcefn sub_assign(&mut self, other: &u32)
fn sub_assign(&mut self, other: &u32)
Performs the -=
operation. Read more
sourceimpl SubAssign<&'_ u64> for NativeEndian<u64>
impl SubAssign<&'_ u64> for NativeEndian<u64>
sourcefn sub_assign(&mut self, other: &u64)
fn sub_assign(&mut self, other: &u64)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<f32>> for NativeEndian<f32>
impl SubAssign<NativeEndian<f32>> for NativeEndian<f32>
sourcefn sub_assign(&mut self, other: NativeEndian<f32>)
fn sub_assign(&mut self, other: NativeEndian<f32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<f64>> for NativeEndian<f64>
impl SubAssign<NativeEndian<f64>> for NativeEndian<f64>
sourcefn sub_assign(&mut self, other: NativeEndian<f64>)
fn sub_assign(&mut self, other: NativeEndian<f64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<i128>> for NativeEndian<i128>
impl SubAssign<NativeEndian<i128>> for NativeEndian<i128>
sourcefn sub_assign(&mut self, other: NativeEndian<i128>)
fn sub_assign(&mut self, other: NativeEndian<i128>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<i16>> for NativeEndian<i16>
impl SubAssign<NativeEndian<i16>> for NativeEndian<i16>
sourcefn sub_assign(&mut self, other: NativeEndian<i16>)
fn sub_assign(&mut self, other: NativeEndian<i16>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<i32>> for NativeEndian<i32>
impl SubAssign<NativeEndian<i32>> for NativeEndian<i32>
sourcefn sub_assign(&mut self, other: NativeEndian<i32>)
fn sub_assign(&mut self, other: NativeEndian<i32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<i64>> for NativeEndian<i64>
impl SubAssign<NativeEndian<i64>> for NativeEndian<i64>
sourcefn sub_assign(&mut self, other: NativeEndian<i64>)
fn sub_assign(&mut self, other: NativeEndian<i64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<u128>> for NativeEndian<u128>
impl SubAssign<NativeEndian<u128>> for NativeEndian<u128>
sourcefn sub_assign(&mut self, other: NativeEndian<u128>)
fn sub_assign(&mut self, other: NativeEndian<u128>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<u16>> for NativeEndian<u16>
impl SubAssign<NativeEndian<u16>> for NativeEndian<u16>
sourcefn sub_assign(&mut self, other: NativeEndian<u16>)
fn sub_assign(&mut self, other: NativeEndian<u16>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<u32>> for NativeEndian<u32>
impl SubAssign<NativeEndian<u32>> for NativeEndian<u32>
sourcefn sub_assign(&mut self, other: NativeEndian<u32>)
fn sub_assign(&mut self, other: NativeEndian<u32>)
Performs the -=
operation. Read more
sourceimpl SubAssign<NativeEndian<u64>> for NativeEndian<u64>
impl SubAssign<NativeEndian<u64>> for NativeEndian<u64>
sourcefn sub_assign(&mut self, other: NativeEndian<u64>)
fn sub_assign(&mut self, other: NativeEndian<u64>)
Performs the -=
operation. Read more
sourceimpl SubAssign<f32> for NativeEndian<f32>
impl SubAssign<f32> for NativeEndian<f32>
sourcefn sub_assign(&mut self, other: f32)
fn sub_assign(&mut self, other: f32)
Performs the -=
operation. Read more
sourceimpl SubAssign<f64> for NativeEndian<f64>
impl SubAssign<f64> for NativeEndian<f64>
sourcefn sub_assign(&mut self, other: f64)
fn sub_assign(&mut self, other: f64)
Performs the -=
operation. Read more
sourceimpl SubAssign<i128> for NativeEndian<i128>
impl SubAssign<i128> for NativeEndian<i128>
sourcefn sub_assign(&mut self, other: i128)
fn sub_assign(&mut self, other: i128)
Performs the -=
operation. Read more
sourceimpl SubAssign<i16> for NativeEndian<i16>
impl SubAssign<i16> for NativeEndian<i16>
sourcefn sub_assign(&mut self, other: i16)
fn sub_assign(&mut self, other: i16)
Performs the -=
operation. Read more
sourceimpl SubAssign<i32> for NativeEndian<i32>
impl SubAssign<i32> for NativeEndian<i32>
sourcefn sub_assign(&mut self, other: i32)
fn sub_assign(&mut self, other: i32)
Performs the -=
operation. Read more
sourceimpl SubAssign<i64> for NativeEndian<i64>
impl SubAssign<i64> for NativeEndian<i64>
sourcefn sub_assign(&mut self, other: i64)
fn sub_assign(&mut self, other: i64)
Performs the -=
operation. Read more
sourceimpl SubAssign<u128> for NativeEndian<u128>
impl SubAssign<u128> for NativeEndian<u128>
sourcefn sub_assign(&mut self, other: u128)
fn sub_assign(&mut self, other: u128)
Performs the -=
operation. Read more
sourceimpl SubAssign<u16> for NativeEndian<u16>
impl SubAssign<u16> for NativeEndian<u16>
sourcefn sub_assign(&mut self, other: u16)
fn sub_assign(&mut self, other: u16)
Performs the -=
operation. Read more
sourceimpl SubAssign<u32> for NativeEndian<u32>
impl SubAssign<u32> for NativeEndian<u32>
sourcefn sub_assign(&mut self, other: u32)
fn sub_assign(&mut self, other: u32)
Performs the -=
operation. Read more
sourceimpl SubAssign<u64> for NativeEndian<u64>
impl SubAssign<u64> for NativeEndian<u64>
sourcefn sub_assign(&mut self, other: u64)
fn sub_assign(&mut self, other: u64)
Performs the -=
operation. Read more
sourceimpl Sum<NativeEndian<f32>> for NativeEndian<f32>
impl Sum<NativeEndian<f32>> for NativeEndian<f32>
sourceimpl Sum<NativeEndian<f64>> for NativeEndian<f64>
impl Sum<NativeEndian<f64>> for NativeEndian<f64>
sourceimpl Sum<NativeEndian<i128>> for NativeEndian<i128>
impl Sum<NativeEndian<i128>> for NativeEndian<i128>
sourceimpl Sum<NativeEndian<i16>> for NativeEndian<i16>
impl Sum<NativeEndian<i16>> for NativeEndian<i16>
sourceimpl Sum<NativeEndian<i32>> for NativeEndian<i32>
impl Sum<NativeEndian<i32>> for NativeEndian<i32>
sourceimpl Sum<NativeEndian<i64>> for NativeEndian<i64>
impl Sum<NativeEndian<i64>> for NativeEndian<i64>
sourceimpl Sum<NativeEndian<u128>> for NativeEndian<u128>
impl Sum<NativeEndian<u128>> for NativeEndian<u128>
sourceimpl Sum<NativeEndian<u16>> for NativeEndian<u16>
impl Sum<NativeEndian<u16>> for NativeEndian<u16>
sourceimpl Sum<NativeEndian<u32>> for NativeEndian<u32>
impl Sum<NativeEndian<u32>> for NativeEndian<u32>
sourceimpl Sum<NativeEndian<u64>> for NativeEndian<u64>
impl Sum<NativeEndian<u64>> for NativeEndian<u64>
sourceimpl UpperExp for NativeEndian<i16>
impl UpperExp for NativeEndian<i16>
sourceimpl UpperExp for NativeEndian<i32>
impl UpperExp for NativeEndian<i32>
sourceimpl UpperExp for NativeEndian<i64>
impl UpperExp for NativeEndian<i64>
sourceimpl UpperExp for NativeEndian<i128>
impl UpperExp for NativeEndian<i128>
sourceimpl UpperExp for NativeEndian<u16>
impl UpperExp for NativeEndian<u16>
sourceimpl UpperExp for NativeEndian<u32>
impl UpperExp for NativeEndian<u32>
sourceimpl UpperExp for NativeEndian<u64>
impl UpperExp for NativeEndian<u64>
sourceimpl UpperExp for NativeEndian<u128>
impl UpperExp for NativeEndian<u128>
sourceimpl UpperExp for NativeEndian<f32>
impl UpperExp for NativeEndian<f32>
sourceimpl UpperExp for NativeEndian<f64>
impl UpperExp for NativeEndian<f64>
sourceimpl UpperHex for NativeEndian<i16>
impl UpperHex for NativeEndian<i16>
sourceimpl UpperHex for NativeEndian<i32>
impl UpperHex for NativeEndian<i32>
sourceimpl UpperHex for NativeEndian<NonZeroI64>
impl UpperHex for NativeEndian<NonZeroI64>
sourceimpl UpperHex for NativeEndian<NonZeroI128>
impl UpperHex for NativeEndian<NonZeroI128>
sourceimpl UpperHex for NativeEndian<NonZeroU16>
impl UpperHex for NativeEndian<NonZeroU16>
sourceimpl UpperHex for NativeEndian<NonZeroU32>
impl UpperHex for NativeEndian<NonZeroU32>
sourceimpl UpperHex for NativeEndian<NonZeroU64>
impl UpperHex for NativeEndian<NonZeroU64>
sourceimpl UpperHex for NativeEndian<NonZeroU128>
impl UpperHex for NativeEndian<NonZeroU128>
sourceimpl UpperHex for NativeEndian<i64>
impl UpperHex for NativeEndian<i64>
sourceimpl UpperHex for NativeEndian<i128>
impl UpperHex for NativeEndian<i128>
sourceimpl UpperHex for NativeEndian<u16>
impl UpperHex for NativeEndian<u16>
sourceimpl UpperHex for NativeEndian<u32>
impl UpperHex for NativeEndian<u32>
sourceimpl UpperHex for NativeEndian<u64>
impl UpperHex for NativeEndian<u64>
sourceimpl UpperHex for NativeEndian<u128>
impl UpperHex for NativeEndian<u128>
sourceimpl UpperHex for NativeEndian<NonZeroI16>
impl UpperHex for NativeEndian<NonZeroI16>
sourceimpl UpperHex for NativeEndian<NonZeroI32>
impl UpperHex for NativeEndian<NonZeroI32>
impl<T: Copy> Copy for NativeEndian<T>
impl Eq for NativeEndian<i16>
impl Eq for NativeEndian<i32>
impl Eq for NativeEndian<char>
impl Eq for NativeEndian<NonZeroI16>
impl Eq for NativeEndian<NonZeroI32>
impl Eq for NativeEndian<NonZeroI64>
impl Eq for NativeEndian<NonZeroI128>
impl Eq for NativeEndian<NonZeroU16>
impl Eq for NativeEndian<NonZeroU32>
impl Eq for NativeEndian<NonZeroU64>
impl Eq for NativeEndian<NonZeroU128>
impl Eq for NativeEndian<i64>
impl Eq for NativeEndian<i128>
impl Eq for NativeEndian<u16>
impl Eq for NativeEndian<u32>
impl Eq for NativeEndian<u64>
impl Eq for NativeEndian<u128>
impl Eq for NativeEndian<f32>
impl Eq for NativeEndian<f64>
impl RefUnwindSafe for NativeEndian<AtomicI16>
impl RefUnwindSafe for NativeEndian<AtomicI32>
impl RefUnwindSafe for NativeEndian<AtomicI64>
impl RefUnwindSafe for NativeEndian<AtomicU16>
impl RefUnwindSafe for NativeEndian<AtomicU32>
impl RefUnwindSafe for NativeEndian<AtomicU64>
impl Sync for NativeEndian<AtomicI16>
impl Sync for NativeEndian<AtomicI32>
impl Sync for NativeEndian<AtomicI64>
impl Sync for NativeEndian<AtomicU16>
impl Sync for NativeEndian<AtomicU32>
impl Sync for NativeEndian<AtomicU64>
Auto Trait Implementations
impl<T> RefUnwindSafe for NativeEndian<T> where
T: RefUnwindSafe,
impl<T> Send for NativeEndian<T> where
T: Send,
impl<T> Sync for NativeEndian<T> where
T: Sync,
impl<T> Unpin for NativeEndian<T> where
T: Unpin,
impl<T> UnwindSafe for NativeEndian<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more