Trait nom::lib::std::ops::BitOrAssign 1.8.0[−][src]
#[lang = "bitor_assign"]pub trait BitOrAssign<Rhs = Self> { fn bitor_assign(&mut self, rhs: Rhs); }
The bitwise OR assignment operator |=
.
Examples
use std::ops::BitOrAssign; #[derive(Debug, PartialEq)] struct PersonalPreferences { likes_cats: bool, likes_dogs: bool, } impl BitOrAssign for PersonalPreferences { fn bitor_assign(&mut self, rhs: Self) { self.likes_cats |= rhs.likes_cats; self.likes_dogs |= rhs.likes_dogs; } } let mut prefs = PersonalPreferences { likes_cats: true, likes_dogs: false }; prefs |= PersonalPreferences { likes_cats: false, likes_dogs: true }; assert_eq!(prefs, PersonalPreferences { likes_cats: true, likes_dogs: true });
Required Methods
fn bitor_assign(&mut self, rhs: Rhs)
Performs the |=
operation.
Implementations on Foreign Types
impl BitOrAssign<i32x8> for i32x8
[src]
impl BitOrAssign<i32x8> for i32x8
fn bitor_assign(&mut self, other: i32x8)
[src]
fn bitor_assign(&mut self, other: i32x8)
impl BitOrAssign<u64> for u64
[src]
impl BitOrAssign<u64> for u64
fn bitor_assign(&mut self, other: u64)
[src]
fn bitor_assign(&mut self, other: u64)
impl BitOrAssign<u32> for u32x2
[src]
impl BitOrAssign<u32> for u32x2
fn bitor_assign(&mut self, other: u32)
[src]
fn bitor_assign(&mut self, other: u32)
impl BitOrAssign<Wrapping<i16>> for Wrapping<i16>
[src]
impl BitOrAssign<Wrapping<i16>> for Wrapping<i16>
fn bitor_assign(&mut self, other: Wrapping<i16>)
[src]
fn bitor_assign(&mut self, other: Wrapping<i16>)
impl<'a> BitOrAssign<&'a Wrapping<u8>> for Wrapping<u8>
[src]
impl<'a> BitOrAssign<&'a Wrapping<u8>> for Wrapping<u8>
fn bitor_assign(&mut self, other: &'a Wrapping<u8>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<u8>)
impl BitOrAssign<i32x2> for i32x2
[src]
impl BitOrAssign<i32x2> for i32x2
fn bitor_assign(&mut self, other: i32x2)
[src]
fn bitor_assign(&mut self, other: i32x2)
impl BitOrAssign<u32x2> for u32x2
[src]
impl BitOrAssign<u32x2> for u32x2
fn bitor_assign(&mut self, other: u32x2)
[src]
fn bitor_assign(&mut self, other: u32x2)
impl BitOrAssign<i32> for i32x8
[src]
impl BitOrAssign<i32> for i32x8
fn bitor_assign(&mut self, other: i32)
[src]
fn bitor_assign(&mut self, other: i32)
impl<'a> BitOrAssign<&'a i32> for i32
[src]
impl<'a> BitOrAssign<&'a i32> for i32
fn bitor_assign(&mut self, other: &'a i32)
[src]
fn bitor_assign(&mut self, other: &'a i32)
impl BitOrAssign<m1x16> for m1x16
[src]
impl BitOrAssign<m1x16> for m1x16
fn bitor_assign(&mut self, other: m1x16)
[src]
fn bitor_assign(&mut self, other: m1x16)
impl BitOrAssign<u64> for u64x2
[src]
impl BitOrAssign<u64> for u64x2
fn bitor_assign(&mut self, other: u64)
[src]
fn bitor_assign(&mut self, other: u64)
impl BitOrAssign<i8> for i8x4
[src]
impl BitOrAssign<i8> for i8x4
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<i16> for i16x32
[src]
impl BitOrAssign<i16> for i16x32
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl BitOrAssign<i8> for i8x16
[src]
impl BitOrAssign<i8> for i8x16
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<i8> for i8x64
[src]
impl BitOrAssign<i8> for i8x64
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<u16x8> for u16x8
[src]
impl BitOrAssign<u16x8> for u16x8
fn bitor_assign(&mut self, other: u16x8)
[src]
fn bitor_assign(&mut self, other: u16x8)
impl BitOrAssign<i8> for i8x8
[src]
impl BitOrAssign<i8> for i8x8
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<u8> for u8x2
[src]
impl BitOrAssign<u8> for u8x2
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<u8x16> for u8x16
[src]
impl BitOrAssign<u8x16> for u8x16
fn bitor_assign(&mut self, other: u8x16)
[src]
fn bitor_assign(&mut self, other: u8x16)
impl<'a> BitOrAssign<&'a u32> for u32
[src]
impl<'a> BitOrAssign<&'a u32> for u32
fn bitor_assign(&mut self, other: &'a u32)
[src]
fn bitor_assign(&mut self, other: &'a u32)
impl<'a> BitOrAssign<&'a u16> for u16
[src]
impl<'a> BitOrAssign<&'a u16> for u16
fn bitor_assign(&mut self, other: &'a u16)
[src]
fn bitor_assign(&mut self, other: &'a u16)
impl BitOrAssign<bool> for m1x8
[src]
impl BitOrAssign<bool> for m1x8
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<m1x64> for m1x64
[src]
impl BitOrAssign<m1x64> for m1x64
fn bitor_assign(&mut self, other: m1x64)
[src]
fn bitor_assign(&mut self, other: m1x64)
impl BitOrAssign<i32> for i32x2
[src]
impl BitOrAssign<i32> for i32x2
fn bitor_assign(&mut self, other: i32)
[src]
fn bitor_assign(&mut self, other: i32)
impl BitOrAssign<bool> for m8x32
[src]
impl BitOrAssign<bool> for m8x32
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl<'a> BitOrAssign<&'a Wrapping<i8>> for Wrapping<i8>
[src]
impl<'a> BitOrAssign<&'a Wrapping<i8>> for Wrapping<i8>
fn bitor_assign(&mut self, other: &'a Wrapping<i8>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<i8>)
impl BitOrAssign<usize> for usize
[src]
impl BitOrAssign<usize> for usize
fn bitor_assign(&mut self, other: usize)
[src]
fn bitor_assign(&mut self, other: usize)
impl BitOrAssign<i8> for i8x2
[src]
impl BitOrAssign<i8> for i8x2
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<u8> for u8x4
[src]
impl BitOrAssign<u8> for u8x4
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<i64x4> for i64x4
[src]
impl BitOrAssign<i64x4> for i64x4
fn bitor_assign(&mut self, other: i64x4)
[src]
fn bitor_assign(&mut self, other: i64x4)
impl BitOrAssign<bool> for m8x2
[src]
impl BitOrAssign<bool> for m8x2
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<u8> for u8x64
[src]
impl BitOrAssign<u8> for u8x64
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<i16x16> for i16x16
[src]
impl BitOrAssign<i16x16> for i16x16
fn bitor_assign(&mut self, other: i16x16)
[src]
fn bitor_assign(&mut self, other: i16x16)
impl BitOrAssign<bool> for m1x16
[src]
impl BitOrAssign<bool> for m1x16
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<m32x8> for m32x8
[src]
impl BitOrAssign<m32x8> for m32x8
fn bitor_assign(&mut self, other: m32x8)
[src]
fn bitor_assign(&mut self, other: m32x8)
impl BitOrAssign<i16x8> for i16x8
[src]
impl BitOrAssign<i16x8> for i16x8
fn bitor_assign(&mut self, other: i16x8)
[src]
fn bitor_assign(&mut self, other: i16x8)
impl<'a> BitOrAssign<&'a Wrapping<isize>> for Wrapping<isize>
[src]
impl<'a> BitOrAssign<&'a Wrapping<isize>> for Wrapping<isize>
fn bitor_assign(&mut self, other: &'a Wrapping<isize>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<isize>)
impl BitOrAssign<m64x4> for m64x4
[src]
impl BitOrAssign<m64x4> for m64x4
fn bitor_assign(&mut self, other: m64x4)
[src]
fn bitor_assign(&mut self, other: m64x4)
impl BitOrAssign<u64x8> for u64x8
[src]
impl BitOrAssign<u64x8> for u64x8
fn bitor_assign(&mut self, other: u64x8)
[src]
fn bitor_assign(&mut self, other: u64x8)
impl<'a> BitOrAssign<&'a Wrapping<i128>> for Wrapping<i128>
[src]
impl<'a> BitOrAssign<&'a Wrapping<i128>> for Wrapping<i128>
fn bitor_assign(&mut self, other: &'a Wrapping<i128>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<i128>)
impl BitOrAssign<m32x2> for m32x2
[src]
impl BitOrAssign<m32x2> for m32x2
fn bitor_assign(&mut self, other: m32x2)
[src]
fn bitor_assign(&mut self, other: m32x2)
impl BitOrAssign<Wrapping<i64>> for Wrapping<i64>
[src]
impl BitOrAssign<Wrapping<i64>> for Wrapping<i64>
fn bitor_assign(&mut self, other: Wrapping<i64>)
[src]
fn bitor_assign(&mut self, other: Wrapping<i64>)
impl BitOrAssign<u32x16> for u32x16
[src]
impl BitOrAssign<u32x16> for u32x16
fn bitor_assign(&mut self, other: u32x16)
[src]
fn bitor_assign(&mut self, other: u32x16)
impl BitOrAssign<m8x32> for m8x32
[src]
impl BitOrAssign<m8x32> for m8x32
fn bitor_assign(&mut self, other: m8x32)
[src]
fn bitor_assign(&mut self, other: m8x32)
impl BitOrAssign<bool> for m16x4
[src]
impl BitOrAssign<bool> for m16x4
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<i16x32> for i16x32
[src]
impl BitOrAssign<i16x32> for i16x32
fn bitor_assign(&mut self, other: i16x32)
[src]
fn bitor_assign(&mut self, other: i16x32)
impl BitOrAssign<m8x16> for m8x16
[src]
impl BitOrAssign<m8x16> for m8x16
fn bitor_assign(&mut self, other: m8x16)
[src]
fn bitor_assign(&mut self, other: m8x16)
impl BitOrAssign<i64x8> for i64x8
[src]
impl BitOrAssign<i64x8> for i64x8
fn bitor_assign(&mut self, other: i64x8)
[src]
fn bitor_assign(&mut self, other: i64x8)
impl<'a> BitOrAssign<&'a Wrapping<i16>> for Wrapping<i16>
[src]
impl<'a> BitOrAssign<&'a Wrapping<i16>> for Wrapping<i16>
fn bitor_assign(&mut self, other: &'a Wrapping<i16>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<i16>)
impl BitOrAssign<i32> for i32x4
[src]
impl BitOrAssign<i32> for i32x4
fn bitor_assign(&mut self, other: i32)
[src]
fn bitor_assign(&mut self, other: i32)
impl BitOrAssign<m8x8> for m8x8
[src]
impl BitOrAssign<m8x8> for m8x8
fn bitor_assign(&mut self, other: m8x8)
[src]
fn bitor_assign(&mut self, other: m8x8)
impl BitOrAssign<u16> for u16x8
[src]
impl BitOrAssign<u16> for u16x8
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl BitOrAssign<bool> for m8x4
[src]
impl BitOrAssign<bool> for m8x4
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<bool> for m32x4
[src]
impl BitOrAssign<bool> for m32x4
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<Wrapping<i32>> for Wrapping<i32>
[src]
impl BitOrAssign<Wrapping<i32>> for Wrapping<i32>
fn bitor_assign(&mut self, other: Wrapping<i32>)
[src]
fn bitor_assign(&mut self, other: Wrapping<i32>)
impl BitOrAssign<bool> for m16x2
[src]
impl BitOrAssign<bool> for m16x2
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<i64x2> for i64x2
[src]
impl BitOrAssign<i64x2> for i64x2
fn bitor_assign(&mut self, other: i64x2)
[src]
fn bitor_assign(&mut self, other: i64x2)
impl BitOrAssign<u32> for u32x8
[src]
impl BitOrAssign<u32> for u32x8
fn bitor_assign(&mut self, other: u32)
[src]
fn bitor_assign(&mut self, other: u32)
impl BitOrAssign<u16> for u16x16
[src]
impl BitOrAssign<u16> for u16x16
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl BitOrAssign<i16x2> for i16x2
[src]
impl BitOrAssign<i16x2> for i16x2
fn bitor_assign(&mut self, other: i16x2)
[src]
fn bitor_assign(&mut self, other: i16x2)
impl<'a> BitOrAssign<&'a Wrapping<usize>> for Wrapping<usize>
[src]
impl<'a> BitOrAssign<&'a Wrapping<usize>> for Wrapping<usize>
fn bitor_assign(&mut self, other: &'a Wrapping<usize>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<usize>)
impl BitOrAssign<u64> for u64x8
[src]
impl BitOrAssign<u64> for u64x8
fn bitor_assign(&mut self, other: u64)
[src]
fn bitor_assign(&mut self, other: u64)
impl BitOrAssign<bool> for m8x16
[src]
impl BitOrAssign<bool> for m8x16
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<m16x2> for m16x2
[src]
impl BitOrAssign<m16x2> for m16x2
fn bitor_assign(&mut self, other: m16x2)
[src]
fn bitor_assign(&mut self, other: m16x2)
impl BitOrAssign<bool> for m64x2
[src]
impl BitOrAssign<bool> for m64x2
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<i64> for i64
[src]
impl BitOrAssign<i64> for i64
fn bitor_assign(&mut self, other: i64)
[src]
fn bitor_assign(&mut self, other: i64)
impl<'a> BitOrAssign<&'a i64> for i64
[src]
impl<'a> BitOrAssign<&'a i64> for i64
fn bitor_assign(&mut self, other: &'a i64)
[src]
fn bitor_assign(&mut self, other: &'a i64)
impl BitOrAssign<Wrapping<usize>> for Wrapping<usize>
[src]
impl BitOrAssign<Wrapping<usize>> for Wrapping<usize>
fn bitor_assign(&mut self, other: Wrapping<usize>)
[src]
fn bitor_assign(&mut self, other: Wrapping<usize>)
impl BitOrAssign<u32> for u32x4
[src]
impl BitOrAssign<u32> for u32x4
fn bitor_assign(&mut self, other: u32)
[src]
fn bitor_assign(&mut self, other: u32)
impl BitOrAssign<u8> for u8x32
[src]
impl BitOrAssign<u8> for u8x32
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<i32x4> for i32x4
[src]
impl BitOrAssign<i32x4> for i32x4
fn bitor_assign(&mut self, other: i32x4)
[src]
fn bitor_assign(&mut self, other: i32x4)
impl BitOrAssign<u8x32> for u8x32
[src]
impl BitOrAssign<u8x32> for u8x32
fn bitor_assign(&mut self, other: u8x32)
[src]
fn bitor_assign(&mut self, other: u8x32)
impl BitOrAssign<i8> for i8
[src]
impl BitOrAssign<i8> for i8
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl BitOrAssign<i8x16> for i8x16
[src]
impl BitOrAssign<i8x16> for i8x16
fn bitor_assign(&mut self, other: i8x16)
[src]
fn bitor_assign(&mut self, other: i8x16)
impl BitOrAssign<i16x4> for i16x4
[src]
impl BitOrAssign<i16x4> for i16x4
fn bitor_assign(&mut self, other: i16x4)
[src]
fn bitor_assign(&mut self, other: i16x4)
impl<'a> BitOrAssign<&'a u8> for u8
[src]
impl<'a> BitOrAssign<&'a u8> for u8
fn bitor_assign(&mut self, other: &'a u8)
[src]
fn bitor_assign(&mut self, other: &'a u8)
impl<'a> BitOrAssign<&'a Wrapping<u16>> for Wrapping<u16>
[src]
impl<'a> BitOrAssign<&'a Wrapping<u16>> for Wrapping<u16>
fn bitor_assign(&mut self, other: &'a Wrapping<u16>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<u16>)
impl BitOrAssign<u64> for u64x4
[src]
impl BitOrAssign<u64> for u64x4
fn bitor_assign(&mut self, other: u64)
[src]
fn bitor_assign(&mut self, other: u64)
impl BitOrAssign<i16> for i16x4
[src]
impl BitOrAssign<i16> for i16x4
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl BitOrAssign<i8x2> for i8x2
[src]
impl BitOrAssign<i8x2> for i8x2
fn bitor_assign(&mut self, other: i8x2)
[src]
fn bitor_assign(&mut self, other: i8x2)
impl BitOrAssign<Wrapping<u64>> for Wrapping<u64>
[src]
impl BitOrAssign<Wrapping<u64>> for Wrapping<u64>
fn bitor_assign(&mut self, other: Wrapping<u64>)
[src]
fn bitor_assign(&mut self, other: Wrapping<u64>)
impl BitOrAssign<i32> for i32x16
[src]
impl BitOrAssign<i32> for i32x16
fn bitor_assign(&mut self, other: i32)
[src]
fn bitor_assign(&mut self, other: i32)
impl BitOrAssign<bool> for m32x8
[src]
impl BitOrAssign<bool> for m32x8
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<u16x2> for u16x2
[src]
impl BitOrAssign<u16x2> for u16x2
fn bitor_assign(&mut self, other: u16x2)
[src]
fn bitor_assign(&mut self, other: u16x2)
impl BitOrAssign<i8> for i8x32
[src]
impl BitOrAssign<i8> for i8x32
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
impl<'a> BitOrAssign<&'a isize> for isize
[src]
impl<'a> BitOrAssign<&'a isize> for isize
fn bitor_assign(&mut self, other: &'a isize)
[src]
fn bitor_assign(&mut self, other: &'a isize)
impl BitOrAssign<i16> for i16x2
[src]
impl BitOrAssign<i16> for i16x2
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl<'a> BitOrAssign<&'a u64> for u64
[src]
impl<'a> BitOrAssign<&'a u64> for u64
fn bitor_assign(&mut self, other: &'a u64)
[src]
fn bitor_assign(&mut self, other: &'a u64)
impl BitOrAssign<Wrapping<isize>> for Wrapping<isize>
[src]
impl BitOrAssign<Wrapping<isize>> for Wrapping<isize>
fn bitor_assign(&mut self, other: Wrapping<isize>)
[src]
fn bitor_assign(&mut self, other: Wrapping<isize>)
impl BitOrAssign<m16x4> for m16x4
[src]
impl BitOrAssign<m16x4> for m16x4
fn bitor_assign(&mut self, other: m16x4)
[src]
fn bitor_assign(&mut self, other: m16x4)
impl BitOrAssign<i32> for i32
[src]
impl BitOrAssign<i32> for i32
fn bitor_assign(&mut self, other: i32)
[src]
fn bitor_assign(&mut self, other: i32)
impl BitOrAssign<m8x2> for m8x2
[src]
impl BitOrAssign<m8x2> for m8x2
fn bitor_assign(&mut self, other: m8x2)
[src]
fn bitor_assign(&mut self, other: m8x2)
impl BitOrAssign<i8x8> for i8x8
[src]
impl BitOrAssign<i8x8> for i8x8
fn bitor_assign(&mut self, other: i8x8)
[src]
fn bitor_assign(&mut self, other: i8x8)
impl BitOrAssign<bool> for m32x2
[src]
impl BitOrAssign<bool> for m32x2
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<bool> for m64x4
[src]
impl BitOrAssign<bool> for m64x4
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<u64x2> for u64x2
[src]
impl BitOrAssign<u64x2> for u64x2
fn bitor_assign(&mut self, other: u64x2)
[src]
fn bitor_assign(&mut self, other: u64x2)
impl BitOrAssign<u16> for u16x4
[src]
impl BitOrAssign<u16> for u16x4
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl<'a> BitOrAssign<&'a Wrapping<u64>> for Wrapping<u64>
[src]
impl<'a> BitOrAssign<&'a Wrapping<u64>> for Wrapping<u64>
fn bitor_assign(&mut self, other: &'a Wrapping<u64>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<u64>)
impl BitOrAssign<u16x32> for u16x32
[src]
impl BitOrAssign<u16x32> for u16x32
fn bitor_assign(&mut self, other: u16x32)
[src]
fn bitor_assign(&mut self, other: u16x32)
impl BitOrAssign<u8> for u8x8
[src]
impl BitOrAssign<u8> for u8x8
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<u16> for u16x32
[src]
impl BitOrAssign<u16> for u16x32
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl BitOrAssign<i16> for i16x8
[src]
impl BitOrAssign<i16> for i16x8
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl BitOrAssign<bool> for m16x8
[src]
impl BitOrAssign<bool> for m16x8
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<Wrapping<u32>> for Wrapping<u32>
[src]
impl BitOrAssign<Wrapping<u32>> for Wrapping<u32>
fn bitor_assign(&mut self, other: Wrapping<u32>)
[src]
fn bitor_assign(&mut self, other: Wrapping<u32>)
impl BitOrAssign<u8x8> for u8x8
[src]
impl BitOrAssign<u8x8> for u8x8
fn bitor_assign(&mut self, other: u8x8)
[src]
fn bitor_assign(&mut self, other: u8x8)
impl<'a> BitOrAssign<&'a usize> for usize
[src]
impl<'a> BitOrAssign<&'a usize> for usize
fn bitor_assign(&mut self, other: &'a usize)
[src]
fn bitor_assign(&mut self, other: &'a usize)
impl BitOrAssign<u32> for u32
[src]
impl BitOrAssign<u32> for u32
fn bitor_assign(&mut self, other: u32)
[src]
fn bitor_assign(&mut self, other: u32)
impl BitOrAssign<u16x16> for u16x16
[src]
impl BitOrAssign<u16x16> for u16x16
fn bitor_assign(&mut self, other: u16x16)
[src]
fn bitor_assign(&mut self, other: u16x16)
impl<'a> BitOrAssign<&'a i8> for i8
[src]
impl<'a> BitOrAssign<&'a i8> for i8
fn bitor_assign(&mut self, other: &'a i8)
[src]
fn bitor_assign(&mut self, other: &'a i8)
impl BitOrAssign<u32x8> for u32x8
[src]
impl BitOrAssign<u32x8> for u32x8
fn bitor_assign(&mut self, other: u32x8)
[src]
fn bitor_assign(&mut self, other: u32x8)
impl<'a> BitOrAssign<&'a Wrapping<u32>> for Wrapping<u32>
[src]
impl<'a> BitOrAssign<&'a Wrapping<u32>> for Wrapping<u32>
fn bitor_assign(&mut self, other: &'a Wrapping<u32>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<u32>)
impl BitOrAssign<isize> for isize
[src]
impl BitOrAssign<isize> for isize
fn bitor_assign(&mut self, other: isize)
[src]
fn bitor_assign(&mut self, other: isize)
impl BitOrAssign<m32x4> for m32x4
[src]
impl BitOrAssign<m32x4> for m32x4
fn bitor_assign(&mut self, other: m32x4)
[src]
fn bitor_assign(&mut self, other: m32x4)
impl BitOrAssign<i8x4> for i8x4
[src]
impl BitOrAssign<i8x4> for i8x4
fn bitor_assign(&mut self, other: i8x4)
[src]
fn bitor_assign(&mut self, other: i8x4)
impl BitOrAssign<bool> for m16x16
[src]
impl BitOrAssign<bool> for m16x16
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<bool> for m1x64
[src]
impl BitOrAssign<bool> for m1x64
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<Wrapping<i128>> for Wrapping<i128>
[src]
impl BitOrAssign<Wrapping<i128>> for Wrapping<i128>
fn bitor_assign(&mut self, other: Wrapping<i128>)
[src]
fn bitor_assign(&mut self, other: Wrapping<i128>)
impl BitOrAssign<i128> for i128
[src]
impl BitOrAssign<i128> for i128
fn bitor_assign(&mut self, other: i128)
[src]
fn bitor_assign(&mut self, other: i128)
impl BitOrAssign<u128> for u128
[src]
impl BitOrAssign<u128> for u128
fn bitor_assign(&mut self, other: u128)
[src]
fn bitor_assign(&mut self, other: u128)
impl<'a> BitOrAssign<&'a Wrapping<u128>> for Wrapping<u128>
[src]
impl<'a> BitOrAssign<&'a Wrapping<u128>> for Wrapping<u128>
fn bitor_assign(&mut self, other: &'a Wrapping<u128>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<u128>)
impl BitOrAssign<m1x32> for m1x32
[src]
impl BitOrAssign<m1x32> for m1x32
fn bitor_assign(&mut self, other: m1x32)
[src]
fn bitor_assign(&mut self, other: m1x32)
impl<'a> BitOrAssign<&'a u128> for u128
[src]
impl<'a> BitOrAssign<&'a u128> for u128
fn bitor_assign(&mut self, other: &'a u128)
[src]
fn bitor_assign(&mut self, other: &'a u128)
impl BitOrAssign<u8x2> for u8x2
[src]
impl BitOrAssign<u8x2> for u8x2
fn bitor_assign(&mut self, other: u8x2)
[src]
fn bitor_assign(&mut self, other: u8x2)
impl<'a> BitOrAssign<&'a i16> for i16
[src]
impl<'a> BitOrAssign<&'a i16> for i16
fn bitor_assign(&mut self, other: &'a i16)
[src]
fn bitor_assign(&mut self, other: &'a i16)
impl BitOrAssign<Wrapping<u128>> for Wrapping<u128>
[src]
impl BitOrAssign<Wrapping<u128>> for Wrapping<u128>
fn bitor_assign(&mut self, other: Wrapping<u128>)
[src]
fn bitor_assign(&mut self, other: Wrapping<u128>)
impl BitOrAssign<bool> for bool
[src]
impl BitOrAssign<bool> for bool
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl BitOrAssign<u8> for u8x16
[src]
impl BitOrAssign<u8> for u8x16
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<i16> for i16
[src]
impl BitOrAssign<i16> for i16
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl BitOrAssign<i8x32> for i8x32
[src]
impl BitOrAssign<i8x32> for i8x32
fn bitor_assign(&mut self, other: i8x32)
[src]
fn bitor_assign(&mut self, other: i8x32)
impl BitOrAssign<i64> for i64x4
[src]
impl BitOrAssign<i64> for i64x4
fn bitor_assign(&mut self, other: i64)
[src]
fn bitor_assign(&mut self, other: i64)
impl BitOrAssign<Wrapping<i8>> for Wrapping<i8>
[src]
impl BitOrAssign<Wrapping<i8>> for Wrapping<i8>
fn bitor_assign(&mut self, other: Wrapping<i8>)
[src]
fn bitor_assign(&mut self, other: Wrapping<i8>)
impl BitOrAssign<i64> for i64x2
[src]
impl BitOrAssign<i64> for i64x2
fn bitor_assign(&mut self, other: i64)
[src]
fn bitor_assign(&mut self, other: i64)
impl BitOrAssign<bool> for m8x8
[src]
impl BitOrAssign<bool> for m8x8
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)
impl<'a> BitOrAssign<&'a bool> for bool
[src]
impl<'a> BitOrAssign<&'a bool> for bool
fn bitor_assign(&mut self, other: &'a bool)
[src]
fn bitor_assign(&mut self, other: &'a bool)
impl BitOrAssign<m64x2> for m64x2
[src]
impl BitOrAssign<m64x2> for m64x2
fn bitor_assign(&mut self, other: m64x2)
[src]
fn bitor_assign(&mut self, other: m64x2)
impl BitOrAssign<u16x4> for u16x4
[src]
impl BitOrAssign<u16x4> for u16x4
fn bitor_assign(&mut self, other: u16x4)
[src]
fn bitor_assign(&mut self, other: u16x4)
impl BitOrAssign<m1x8> for m1x8
[src]
impl BitOrAssign<m1x8> for m1x8
fn bitor_assign(&mut self, other: m1x8)
[src]
fn bitor_assign(&mut self, other: m1x8)
impl<'a> BitOrAssign<&'a i128> for i128
[src]
impl<'a> BitOrAssign<&'a i128> for i128
fn bitor_assign(&mut self, other: &'a i128)
[src]
fn bitor_assign(&mut self, other: &'a i128)
impl BitOrAssign<Wrapping<u16>> for Wrapping<u16>
[src]
impl BitOrAssign<Wrapping<u16>> for Wrapping<u16>
fn bitor_assign(&mut self, other: Wrapping<u16>)
[src]
fn bitor_assign(&mut self, other: Wrapping<u16>)
impl BitOrAssign<Wrapping<u8>> for Wrapping<u8>
[src]
impl BitOrAssign<Wrapping<u8>> for Wrapping<u8>
fn bitor_assign(&mut self, other: Wrapping<u8>)
[src]
fn bitor_assign(&mut self, other: Wrapping<u8>)
impl BitOrAssign<u8x64> for u8x64
[src]
impl BitOrAssign<u8x64> for u8x64
fn bitor_assign(&mut self, other: u8x64)
[src]
fn bitor_assign(&mut self, other: u8x64)
impl BitOrAssign<u16> for u16
[src]
impl BitOrAssign<u16> for u16
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl BitOrAssign<m16x8> for m16x8
[src]
impl BitOrAssign<m16x8> for m16x8
fn bitor_assign(&mut self, other: m16x8)
[src]
fn bitor_assign(&mut self, other: m16x8)
impl BitOrAssign<u32> for u32x16
[src]
impl BitOrAssign<u32> for u32x16
fn bitor_assign(&mut self, other: u32)
[src]
fn bitor_assign(&mut self, other: u32)
impl BitOrAssign<u8x4> for u8x4
[src]
impl BitOrAssign<u8x4> for u8x4
fn bitor_assign(&mut self, other: u8x4)
[src]
fn bitor_assign(&mut self, other: u8x4)
impl BitOrAssign<i64> for i64x8
[src]
impl BitOrAssign<i64> for i64x8
fn bitor_assign(&mut self, other: i64)
[src]
fn bitor_assign(&mut self, other: i64)
impl BitOrAssign<u8> for u8
[src]
impl BitOrAssign<u8> for u8
fn bitor_assign(&mut self, other: u8)
[src]
fn bitor_assign(&mut self, other: u8)
impl BitOrAssign<m16x16> for m16x16
[src]
impl BitOrAssign<m16x16> for m16x16
fn bitor_assign(&mut self, other: m16x16)
[src]
fn bitor_assign(&mut self, other: m16x16)
impl<'a> BitOrAssign<&'a Wrapping<i64>> for Wrapping<i64>
[src]
impl<'a> BitOrAssign<&'a Wrapping<i64>> for Wrapping<i64>
fn bitor_assign(&mut self, other: &'a Wrapping<i64>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<i64>)
impl BitOrAssign<m8x4> for m8x4
[src]
impl BitOrAssign<m8x4> for m8x4
fn bitor_assign(&mut self, other: m8x4)
[src]
fn bitor_assign(&mut self, other: m8x4)
impl<'a> BitOrAssign<&'a Wrapping<i32>> for Wrapping<i32>
[src]
impl<'a> BitOrAssign<&'a Wrapping<i32>> for Wrapping<i32>
fn bitor_assign(&mut self, other: &'a Wrapping<i32>)
[src]
fn bitor_assign(&mut self, other: &'a Wrapping<i32>)
impl BitOrAssign<u32x4> for u32x4
[src]
impl BitOrAssign<u32x4> for u32x4
fn bitor_assign(&mut self, other: u32x4)
[src]
fn bitor_assign(&mut self, other: u32x4)
impl BitOrAssign<i16> for i16x16
[src]
impl BitOrAssign<i16> for i16x16
fn bitor_assign(&mut self, other: i16)
[src]
fn bitor_assign(&mut self, other: i16)
impl BitOrAssign<u16> for u16x2
[src]
impl BitOrAssign<u16> for u16x2
fn bitor_assign(&mut self, other: u16)
[src]
fn bitor_assign(&mut self, other: u16)
impl BitOrAssign<u64x4> for u64x4
[src]
impl BitOrAssign<u64x4> for u64x4
fn bitor_assign(&mut self, other: u64x4)
[src]
fn bitor_assign(&mut self, other: u64x4)
impl BitOrAssign<i8x64> for i8x64
[src]
impl BitOrAssign<i8x64> for i8x64
fn bitor_assign(&mut self, other: i8x64)
[src]
fn bitor_assign(&mut self, other: i8x64)
impl BitOrAssign<i32x16> for i32x16
[src]
impl BitOrAssign<i32x16> for i32x16
fn bitor_assign(&mut self, other: i32x16)
[src]
fn bitor_assign(&mut self, other: i32x16)
impl BitOrAssign<bool> for m1x32
[src]
impl BitOrAssign<bool> for m1x32
fn bitor_assign(&mut self, other: bool)
[src]
fn bitor_assign(&mut self, other: bool)