Trait otter_api_tests::imports::failure::_core::ops::BitOrAssign1.8.0[][src]

pub trait BitOrAssign<Rhs = Self> {
    fn bitor_assign(&mut self, rhs: Rhs);
}
Expand description

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)[src]

Performs the |= operation.

Examples

let mut x = true;
x |= false;
assert_eq!(x, true);

let mut x = false;
x |= false;
assert_eq!(x, false);

let mut x: u8 = 5;
x |= 1;
assert_eq!(x, 5);

let mut x: u8 = 5;
x |= 2;
assert_eq!(x, 7);

Implementations on Foreign Types

impl BitOrAssign<i128> for i128[src]

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

impl BitOrAssign<u32> for u32[src]

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

impl BitOrAssign<u64> for u64[src]

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

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

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

impl BitOrAssign<isize> for isize[src]

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

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

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

impl<'_> BitOrAssign<&'_ i8> for i8[src]

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

impl<'_> BitOrAssign<&'_ isize> for isize[src]

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

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

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

impl BitOrAssign<u8> for u8[src]

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

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

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

impl BitOrAssign<usize> for usize[src]

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

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

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

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

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

impl BitOrAssign<u16> for u16[src]

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

impl<'_> BitOrAssign<&'_ usize> for usize[src]

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

impl BitOrAssign<i32> for i32[src]

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

impl<'_> BitOrAssign<&'_ bool> for bool[src]

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

impl BitOrAssign<u128> for u128[src]

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

impl BitOrAssign<bool> for bool[src]

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

impl BitOrAssign<i64> for i64[src]

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

impl BitOrAssign<i8> for i8[src]

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

impl<'_> BitOrAssign<&'_ u8> for u8[src]

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

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

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

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

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

impl BitOrAssign<i16> for i16[src]

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

impl BitOrAssign<Op> for Op

pub fn bitor_assign(&mut self, other: Op)

Adds the set of flags.

impl<T> BitOrAssign<T> for Ready where
    T: Into<Ready>, 
[src]

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

impl BitOrAssign<WatchMask> for WatchMask

pub fn bitor_assign(&mut self, other: WatchMask)

Adds the set of flags.

impl BitOrAssign<EventMask> for EventMask

pub fn bitor_assign(&mut self, other: EventMask)

Adds the set of flags.

impl BitOrAssign<Choice> for Choice[src]

pub fn bitor_assign(&mut self, rhs: Choice)[src]

impl BitOrAssign<Interest> for Interest[src]

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

impl BitOrAssign<Transformations> for Transformations

pub fn bitor_assign(&mut self, other: Transformations)

Adds the set of flags.

impl BitOrAssign<Interest> for Interest

pub fn bitor_assign(&mut self, other: Interest)

impl BitOrAssign<Ready> for Ready

pub fn bitor_assign(&mut self, other: Ready)

impl BitOrAssign<ShutdownState> for ShutdownState[src]

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

Adds the set of flags.

impl BitOrAssign<OcspFlag> for OcspFlag[src]

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

Adds the set of flags.

impl BitOrAssign<ExtensionContext> for ExtensionContext[src]

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

Adds the set of flags.

impl BitOrAssign<SslVerifyMode> for SslVerifyMode[src]

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

Adds the set of flags.

impl BitOrAssign<X509VerifyFlags> for X509VerifyFlags[src]

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

Adds the set of flags.

impl BitOrAssign<SslSessionCacheMode> for SslSessionCacheMode[src]

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

Adds the set of flags.

impl BitOrAssign<Pkcs7Flags> for Pkcs7Flags[src]

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

Adds the set of flags.

impl BitOrAssign<SslOptions> for SslOptions[src]

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

Adds the set of flags.

impl BitOrAssign<CMSOptions> for CMSOptions[src]

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

Adds the set of flags.

impl BitOrAssign<X509CheckFlags> for X509CheckFlags[src]

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

Adds the set of flags.

impl BitOrAssign<SslMode> for SslMode[src]

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

Adds the set of flags.

Implementors

impl BitOrAssign<i8> for NonZeroI81.45.0[src]

pub fn bitor_assign(&mut self, rhs: i8)[src]

impl BitOrAssign<i16> for NonZeroI161.45.0[src]

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

impl BitOrAssign<i32> for NonZeroI321.45.0[src]

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

impl BitOrAssign<i64> for NonZeroI641.45.0[src]

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

impl BitOrAssign<i128> for NonZeroI1281.45.0[src]

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

impl BitOrAssign<isize> for NonZeroIsize1.45.0[src]

pub fn bitor_assign(&mut self, rhs: isize)[src]

impl BitOrAssign<u8> for NonZeroU81.45.0[src]

pub fn bitor_assign(&mut self, rhs: u8)[src]

impl BitOrAssign<u16> for NonZeroU161.45.0[src]

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

impl BitOrAssign<u32> for NonZeroU321.45.0[src]

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

impl BitOrAssign<u64> for NonZeroU641.45.0[src]

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

impl BitOrAssign<u128> for NonZeroU1281.45.0[src]

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

impl BitOrAssign<usize> for NonZeroUsize1.45.0[src]

pub fn bitor_assign(&mut self, rhs: usize)[src]

impl BitOrAssign<NonZeroUsize> for NonZeroUsize1.45.0[src]

pub fn bitor_assign(&mut self, rhs: NonZeroUsize)[src]

impl BitOrAssign<Wrapping<i8>> for Wrapping<i8>[src]

pub fn bitor_assign(&mut self, other: Wrapping<i8>)[src]

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

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

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

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

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

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

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

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

impl BitOrAssign<Wrapping<isize>> for Wrapping<isize>[src]

pub fn bitor_assign(&mut self, other: Wrapping<isize>)[src]

impl BitOrAssign<Wrapping<u8>> for Wrapping<u8>[src]

pub fn bitor_assign(&mut self, other: Wrapping<u8>)[src]

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

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

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

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

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

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

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

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

impl BitOrAssign<Wrapping<usize>> for Wrapping<usize>[src]

pub fn bitor_assign(&mut self, other: Wrapping<usize>)[src]

impl BitOrAssign<AccessFlags> for AccessFlags

pub fn bitor_assign(&mut self, other: AccessFlags)

Adds the set of flags.

impl BitOrAssign<AtFlags> for AtFlags

pub fn bitor_assign(&mut self, other: AtFlags)

Adds the set of flags.

impl BitOrAssign<FallocateFlags> for FallocateFlags

pub fn bitor_assign(&mut self, other: FallocateFlags)

Adds the set of flags.

impl BitOrAssign<FdFlag> for otter_api_tests::imports::nix::fcntl::FdFlag

pub fn bitor_assign(&mut self, other: FdFlag)

Adds the set of flags.

impl BitOrAssign<OFlag> for OFlag

pub fn bitor_assign(&mut self, other: OFlag)

Adds the set of flags.

impl BitOrAssign<SealFlag> for SealFlag

pub fn bitor_assign(&mut self, other: SealFlag)

Adds the set of flags.

impl BitOrAssign<SpliceFFlags> for SpliceFFlags

pub fn bitor_assign(&mut self, other: SpliceFFlags)

Adds the set of flags.

impl BitOrAssign<DeleteModuleFlags> for DeleteModuleFlags

pub fn bitor_assign(&mut self, other: DeleteModuleFlags)

Adds the set of flags.

impl BitOrAssign<ModuleInitFlags> for ModuleInitFlags

pub fn bitor_assign(&mut self, other: ModuleInitFlags)

Adds the set of flags.

impl BitOrAssign<MntFlags> for MntFlags

pub fn bitor_assign(&mut self, other: MntFlags)

Adds the set of flags.

impl BitOrAssign<MsFlags> for otter_api_tests::imports::nix::mount::MsFlags

pub fn bitor_assign(&mut self, other: MsFlags)

Adds the set of flags.

impl BitOrAssign<FdFlag> for otter_api_tests::imports::nix::mqueue::FdFlag

pub fn bitor_assign(&mut self, other: FdFlag)

Adds the set of flags.

impl BitOrAssign<MQ_OFlag> for MQ_OFlag

pub fn bitor_assign(&mut self, other: MQ_OFlag)

Adds the set of flags.

impl BitOrAssign<InterfaceFlags> for InterfaceFlags

pub fn bitor_assign(&mut self, other: InterfaceFlags)

Adds the set of flags.

impl BitOrAssign<PollFlags> for PollFlags

pub fn bitor_assign(&mut self, other: PollFlags)

Adds the set of flags.

impl BitOrAssign<CloneFlags> for CloneFlags

pub fn bitor_assign(&mut self, other: CloneFlags)

Adds the set of flags.

impl BitOrAssign<EpollCreateFlags> for EpollCreateFlags

pub fn bitor_assign(&mut self, other: EpollCreateFlags)

Adds the set of flags.

impl BitOrAssign<EpollFlags> for EpollFlags

pub fn bitor_assign(&mut self, other: EpollFlags)

Adds the set of flags.

impl BitOrAssign<EfdFlags> for EfdFlags

pub fn bitor_assign(&mut self, other: EfdFlags)

Adds the set of flags.

impl BitOrAssign<AddWatchFlags> for AddWatchFlags

pub fn bitor_assign(&mut self, other: AddWatchFlags)

Adds the set of flags.

impl BitOrAssign<InitFlags> for InitFlags

pub fn bitor_assign(&mut self, other: InitFlags)

Adds the set of flags.

impl BitOrAssign<MemFdCreateFlag> for MemFdCreateFlag

pub fn bitor_assign(&mut self, other: MemFdCreateFlag)

Adds the set of flags.

impl BitOrAssign<MRemapFlags> for MRemapFlags

pub fn bitor_assign(&mut self, other: MRemapFlags)

Adds the set of flags.

impl BitOrAssign<MapFlags> for MapFlags

pub fn bitor_assign(&mut self, other: MapFlags)

Adds the set of flags.

impl BitOrAssign<MlockAllFlags> for MlockAllFlags

pub fn bitor_assign(&mut self, other: MlockAllFlags)

Adds the set of flags.

impl BitOrAssign<MsFlags> for otter_api_tests::imports::nix::sys::mman::MsFlags

pub fn bitor_assign(&mut self, other: MsFlags)

Adds the set of flags.

impl BitOrAssign<ProtFlags> for ProtFlags

pub fn bitor_assign(&mut self, other: ProtFlags)

Adds the set of flags.

impl BitOrAssign<Persona> for Persona

pub fn bitor_assign(&mut self, other: Persona)

Adds the set of flags.

impl BitOrAssign<Options> for Options

pub fn bitor_assign(&mut self, other: Options)

Adds the set of flags.

impl BitOrAssign<QuotaValidFlags> for QuotaValidFlags

pub fn bitor_assign(&mut self, other: QuotaValidFlags)

Adds the set of flags.

impl BitOrAssign<SaFlags> for SaFlags

pub fn bitor_assign(&mut self, other: SaFlags)

Adds the set of flags.

impl BitOrAssign<SfdFlags> for SfdFlags

pub fn bitor_assign(&mut self, other: SfdFlags)

Adds the set of flags.

impl BitOrAssign<MsgFlags> for MsgFlags

pub fn bitor_assign(&mut self, other: MsgFlags)

Adds the set of flags.

impl BitOrAssign<SockFlag> for SockFlag

pub fn bitor_assign(&mut self, other: SockFlag)

Adds the set of flags.

impl BitOrAssign<Mode> for Mode

pub fn bitor_assign(&mut self, other: Mode)

Adds the set of flags.

impl BitOrAssign<SFlag> for SFlag

pub fn bitor_assign(&mut self, other: SFlag)

Adds the set of flags.

impl BitOrAssign<FsFlags> for FsFlags

pub fn bitor_assign(&mut self, other: FsFlags)

Adds the set of flags.

impl BitOrAssign<ControlFlags> for ControlFlags

pub fn bitor_assign(&mut self, other: ControlFlags)

Adds the set of flags.

impl BitOrAssign<InputFlags> for InputFlags

pub fn bitor_assign(&mut self, other: InputFlags)

Adds the set of flags.

impl BitOrAssign<LocalFlags> for LocalFlags

pub fn bitor_assign(&mut self, other: LocalFlags)

Adds the set of flags.

impl BitOrAssign<OutputFlags> for OutputFlags

pub fn bitor_assign(&mut self, other: OutputFlags)

Adds the set of flags.

impl BitOrAssign<TimerFlags> for TimerFlags

pub fn bitor_assign(&mut self, other: TimerFlags)

Adds the set of flags.

impl BitOrAssign<TimerSetTimeFlags> for TimerSetTimeFlags

pub fn bitor_assign(&mut self, other: TimerSetTimeFlags)

Adds the set of flags.

impl BitOrAssign<WaitPidFlag> for WaitPidFlag

pub fn bitor_assign(&mut self, other: WaitPidFlag)

Adds the set of flags.

impl BitOrAssign<NonZeroI8> for NonZeroI81.45.0[src]

pub fn bitor_assign(&mut self, rhs: NonZeroI8)[src]

impl BitOrAssign<NonZeroI16> for NonZeroI161.45.0[src]

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

impl BitOrAssign<NonZeroI32> for NonZeroI321.45.0[src]

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

impl BitOrAssign<NonZeroI64> for NonZeroI641.45.0[src]

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

impl BitOrAssign<NonZeroI128> for NonZeroI1281.45.0[src]

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

impl BitOrAssign<NonZeroIsize> for NonZeroIsize1.45.0[src]

pub fn bitor_assign(&mut self, rhs: NonZeroIsize)[src]

impl BitOrAssign<NonZeroU8> for NonZeroU81.45.0[src]

pub fn bitor_assign(&mut self, rhs: NonZeroU8)[src]

impl BitOrAssign<NonZeroU16> for NonZeroU161.45.0[src]

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

impl BitOrAssign<NonZeroU32> for NonZeroU321.45.0[src]

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

impl BitOrAssign<NonZeroU64> for NonZeroU641.45.0[src]

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

impl BitOrAssign<NonZeroU128> for NonZeroU1281.45.0[src]

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

impl<'_> BitOrAssign<&'_ Wrapping<i8>> for Wrapping<i8>1.22.0[src]

pub fn bitor_assign(&mut self, other: &Wrapping<i8>)[src]

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

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

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

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

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

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

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

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

impl<'_> BitOrAssign<&'_ Wrapping<isize>> for Wrapping<isize>1.22.0[src]

pub fn bitor_assign(&mut self, other: &Wrapping<isize>)[src]

impl<'_> BitOrAssign<&'_ Wrapping<u8>> for Wrapping<u8>1.22.0[src]

pub fn bitor_assign(&mut self, other: &Wrapping<u8>)[src]

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

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

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

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

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

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

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

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

impl<'_> BitOrAssign<&'_ Wrapping<usize>> for Wrapping<usize>1.22.0[src]

pub fn bitor_assign(&mut self, other: &Wrapping<usize>)[src]