Trait druid::piet::cairo::glib::bitflags::_core::ops::BitXor

1.0.0 · source ·
pub trait BitXor<Rhs = Self> {
    type Output;

    // Required method
    fn bitxor(self, rhs: Rhs) -> Self::Output;
}
Expand description

The bitwise XOR operator ^.

Note that Rhs is Self by default, but this is not mandatory.

Examples

An implementation of BitXor that lifts ^ to a wrapper around bool.

use std::ops::BitXor;

#[derive(Debug, PartialEq)]
struct Scalar(bool);

impl BitXor for Scalar {
    type Output = Self;

    // rhs is the "right-hand side" of the expression `a ^ b`
    fn bitxor(self, rhs: Self) -> Self::Output {
        Self(self.0 ^ rhs.0)
    }
}

assert_eq!(Scalar(true) ^ Scalar(true), Scalar(false));
assert_eq!(Scalar(true) ^ Scalar(false), Scalar(true));
assert_eq!(Scalar(false) ^ Scalar(true), Scalar(true));
assert_eq!(Scalar(false) ^ Scalar(false), Scalar(false));

An implementation of BitXor trait for a wrapper around Vec<bool>.

use std::ops::BitXor;

#[derive(Debug, PartialEq)]
struct BooleanVector(Vec<bool>);

impl BitXor for BooleanVector {
    type Output = Self;

    fn bitxor(self, Self(rhs): Self) -> Self::Output {
        let Self(lhs) = self;
        assert_eq!(lhs.len(), rhs.len());
        Self(
            lhs.iter()
                .zip(rhs.iter())
                .map(|(x, y)| *x ^ *y)
                .collect()
        )
    }
}

let bv1 = BooleanVector(vec![true, true, false, false]);
let bv2 = BooleanVector(vec![true, false, true, false]);
let expected = BooleanVector(vec![false, true, true, false]);
assert_eq!(bv1 ^ bv2, expected);

Required Associated Types§

source

type Output

The resulting type after applying the ^ operator.

Required Methods§

source

fn bitxor(self, rhs: Rhs) -> Self::Output

Performs the ^ operation.

Examples
assert_eq!(true ^ false, true);
assert_eq!(true ^ true, false);
assert_eq!(5u8 ^ 1u8, 4);
assert_eq!(5u8 ^ 2u8, 7);

Implementors§

const: unstable · source§

impl BitXor<&bool> for &bool

const: unstable · source§

impl BitXor<&bool> for bool

const: unstable · source§

impl BitXor<&i8> for &i8

§

type Output = <i8 as BitXor<i8>>::Output

const: unstable · source§

impl BitXor<&i8> for i8

§

type Output = <i8 as BitXor<i8>>::Output

const: unstable · source§

impl BitXor<&i16> for &i16

§

type Output = <i16 as BitXor<i16>>::Output

const: unstable · source§

impl BitXor<&i16> for i16

§

type Output = <i16 as BitXor<i16>>::Output

const: unstable · source§

impl BitXor<&i32> for &i32

§

type Output = <i32 as BitXor<i32>>::Output

const: unstable · source§

impl BitXor<&i32> for i32

§

type Output = <i32 as BitXor<i32>>::Output

const: unstable · source§

impl BitXor<&i64> for &i64

§

type Output = <i64 as BitXor<i64>>::Output

const: unstable · source§

impl BitXor<&i64> for i64

§

type Output = <i64 as BitXor<i64>>::Output

const: unstable · source§

impl BitXor<&i128> for &i128

const: unstable · source§

impl BitXor<&i128> for i128

const: unstable · source§

impl BitXor<&isize> for &isize

const: unstable · source§

impl BitXor<&isize> for isize

const: unstable · source§

impl BitXor<&u8> for &u8

§

type Output = <u8 as BitXor<u8>>::Output

const: unstable · source§

impl BitXor<&u8> for u8

§

type Output = <u8 as BitXor<u8>>::Output

const: unstable · source§

impl BitXor<&u16> for &u16

§

type Output = <u16 as BitXor<u16>>::Output

const: unstable · source§

impl BitXor<&u16> for u16

§

type Output = <u16 as BitXor<u16>>::Output

const: unstable · source§

impl BitXor<&u32> for &u32

§

type Output = <u32 as BitXor<u32>>::Output

const: unstable · source§

impl BitXor<&u32> for u32

§

type Output = <u32 as BitXor<u32>>::Output

const: unstable · source§

impl BitXor<&u64> for &u64

§

type Output = <u64 as BitXor<u64>>::Output

const: unstable · source§

impl BitXor<&u64> for u64

§

type Output = <u64 as BitXor<u64>>::Output

const: unstable · source§

impl BitXor<&u128> for &u128

const: unstable · source§

impl BitXor<&u128> for u128

const: unstable · source§

impl BitXor<&usize> for &usize

const: unstable · source§

impl BitXor<&usize> for usize

source§

impl BitXor<&Saturating<i8>> for &Saturating<i8>

source§

impl BitXor<&Saturating<i8>> for Saturating<i8>

source§

impl BitXor<&Saturating<i16>> for &Saturating<i16>

source§

impl BitXor<&Saturating<i16>> for Saturating<i16>

source§

impl BitXor<&Saturating<i32>> for &Saturating<i32>

source§

impl BitXor<&Saturating<i32>> for Saturating<i32>

source§

impl BitXor<&Saturating<i64>> for &Saturating<i64>

source§

impl BitXor<&Saturating<i64>> for Saturating<i64>

source§

impl BitXor<&Saturating<i128>> for &Saturating<i128>

source§

impl BitXor<&Saturating<i128>> for Saturating<i128>

source§

impl BitXor<&Saturating<isize>> for &Saturating<isize>

source§

impl BitXor<&Saturating<isize>> for Saturating<isize>

source§

impl BitXor<&Saturating<u8>> for &Saturating<u8>

source§

impl BitXor<&Saturating<u8>> for Saturating<u8>

source§

impl BitXor<&Saturating<u16>> for &Saturating<u16>

source§

impl BitXor<&Saturating<u16>> for Saturating<u16>

source§

impl BitXor<&Saturating<u32>> for &Saturating<u32>

source§

impl BitXor<&Saturating<u32>> for Saturating<u32>

source§

impl BitXor<&Saturating<u64>> for &Saturating<u64>

source§

impl BitXor<&Saturating<u64>> for Saturating<u64>

source§

impl BitXor<&Saturating<u128>> for &Saturating<u128>

source§

impl BitXor<&Saturating<u128>> for Saturating<u128>

source§

impl BitXor<&Saturating<usize>> for &Saturating<usize>

source§

impl BitXor<&Saturating<usize>> for Saturating<usize>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i8>> for &Wrapping<i8>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i8>> for Wrapping<i8>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i16>> for &Wrapping<i16>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i16>> for Wrapping<i16>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i32>> for &Wrapping<i32>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i32>> for Wrapping<i32>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i64>> for &Wrapping<i64>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i64>> for Wrapping<i64>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i128>> for &Wrapping<i128>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<i128>> for Wrapping<i128>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<isize>> for &Wrapping<isize>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<isize>> for Wrapping<isize>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u8>> for &Wrapping<u8>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u8>> for Wrapping<u8>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u16>> for &Wrapping<u16>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u16>> for Wrapping<u16>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u32>> for &Wrapping<u32>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u32>> for Wrapping<u32>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u64>> for &Wrapping<u64>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u64>> for Wrapping<u64>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u128>> for &Wrapping<u128>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<u128>> for Wrapping<u128>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<usize>> for &Wrapping<usize>

1.14.0 (const: unstable) · source§

impl BitXor<&Wrapping<usize>> for Wrapping<usize>

const: unstable · source§

impl BitXor<bool> for bool

§

type Output = bool

const: unstable · source§

impl BitXor<i8> for i8

§

type Output = i8

const: unstable · source§

impl BitXor<i16> for i16

§

type Output = i16

const: unstable · source§

impl BitXor<i32> for i32

§

type Output = i32

const: unstable · source§

impl BitXor<i64> for i64

§

type Output = i64

const: unstable · source§

impl BitXor<i128> for i128

§

type Output = i128

const: unstable · source§

impl BitXor<isize> for isize

const: unstable · source§

impl BitXor<u8> for u8

§

type Output = u8

const: unstable · source§

impl BitXor<u16> for u16

§

type Output = u16

const: unstable · source§

impl BitXor<u32> for u32

§

type Output = u32

const: unstable · source§

impl BitXor<u64> for u64

§

type Output = u64

const: unstable · source§

impl BitXor<u128> for u128

§

type Output = u128

const: unstable · source§

impl BitXor<usize> for usize

source§

impl BitXor<Modifiers> for druid::Modifiers

§

impl BitXor<PdfOutline> for PdfOutline

§

impl BitXor<BindingFlags> for BindingFlags

§

impl BitXor<FormatSizeFlags> for FormatSizeFlags

§

impl BitXor<IOCondition> for IOCondition

§

impl BitXor<KeyFileFlags> for KeyFileFlags

§

impl BitXor<LogLevelFlags> for LogLevelFlags

§

impl BitXor<LogLevels> for LogLevels

§

impl BitXor<OptionFlags> for OptionFlags

§

impl BitXor<ParamFlags> for ParamFlags

§

impl BitXor<SignalFlags> for SignalFlags

§

impl BitXor<SpawnFlags> for SpawnFlags

source§

impl BitXor<Saturating<i8>> for Saturating<i8>

source§

impl BitXor<Saturating<i16>> for Saturating<i16>

source§

impl BitXor<Saturating<i32>> for Saturating<i32>

source§

impl BitXor<Saturating<i64>> for Saturating<i64>

source§

impl BitXor<Saturating<i128>> for Saturating<i128>

source§

impl BitXor<Saturating<isize>> for Saturating<isize>

source§

impl BitXor<Saturating<u8>> for Saturating<u8>

source§

impl BitXor<Saturating<u16>> for Saturating<u16>

source§

impl BitXor<Saturating<u32>> for Saturating<u32>

source§

impl BitXor<Saturating<u64>> for Saturating<u64>

source§

impl BitXor<Saturating<u128>> for Saturating<u128>

source§

impl BitXor<Saturating<usize>> for Saturating<usize>

const: unstable · source§

impl BitXor<Wrapping<i8>> for Wrapping<i8>

const: unstable · source§

impl BitXor<Wrapping<i16>> for Wrapping<i16>

const: unstable · source§

impl BitXor<Wrapping<i32>> for Wrapping<i32>

const: unstable · source§

impl BitXor<Wrapping<i64>> for Wrapping<i64>

const: unstable · source§

impl BitXor<Wrapping<i128>> for Wrapping<i128>

const: unstable · source§

impl BitXor<Wrapping<isize>> for Wrapping<isize>

const: unstable · source§

impl BitXor<Wrapping<u8>> for Wrapping<u8>

const: unstable · source§

impl BitXor<Wrapping<u16>> for Wrapping<u16>

const: unstable · source§

impl BitXor<Wrapping<u32>> for Wrapping<u32>

const: unstable · source§

impl BitXor<Wrapping<u64>> for Wrapping<u64>

const: unstable · source§

impl BitXor<Wrapping<u128>> for Wrapping<u128>

const: unstable · source§

impl BitXor<Wrapping<usize>> for Wrapping<usize>

source§

impl BitXor<FmtSpan> for FmtSpan

source§

impl BitXor<B0> for B0

Xor between 0 and 0 ( 0 ^ 0 = 0)

§

type Output = B0

source§

impl BitXor<B0> for B1

Xor between 1 and 0 ( 1 ^ 0 = 1)

§

type Output = B1

source§

impl BitXor<B1> for B0

Xor between 0 and 1 ( 0 ^ 1 = 1)

§

type Output = B1

source§

impl BitXor<B1> for B1

Xor between 1 and 1 ( 1 ^ 1 = 0)

§

type Output = B0

§

impl BitXor<AccelFlags> for AccelFlags

§

type Output = AccelFlags

§

impl BitXor<AnchorHints> for AnchorHints

§

type Output = AnchorHints

§

impl BitXor<AppInfoCreateFlags> for AppInfoCreateFlags

§

type Output = AppInfoCreateFlags

§

impl BitXor<ApplicationFlags> for ApplicationFlags

§

type Output = ApplicationFlags

§

impl BitXor<ApplicationInhibitFlags> for ApplicationInhibitFlags

§

type Output = ApplicationInhibitFlags

§

impl BitXor<AskPasswordFlags> for AskPasswordFlags

§

type Output = AskPasswordFlags

§

impl BitXor<AxisFlags> for AxisFlags

§

type Output = AxisFlags

§

impl BitXor<BusNameOwnerFlags> for BusNameOwnerFlags

§

type Output = BusNameOwnerFlags

§

impl BitXor<BusNameWatcherFlags> for BusNameWatcherFlags

§

type Output = BusNameWatcherFlags

§

impl BitXor<CalendarDisplayOptions> for CalendarDisplayOptions

§

type Output = CalendarDisplayOptions

§

impl BitXor<CellRendererState> for CellRendererState

§

type Output = CellRendererState

§

impl BitXor<ConverterFlags> for ConverterFlags

§

type Output = ConverterFlags

§

impl BitXor<DBusCallFlags> for DBusCallFlags

§

type Output = DBusCallFlags

§

impl BitXor<DBusCapabilityFlags> for DBusCapabilityFlags

§

type Output = DBusCapabilityFlags

§

impl BitXor<DBusConnectionFlags> for DBusConnectionFlags

§

type Output = DBusConnectionFlags

§

impl BitXor<DBusInterfaceSkeletonFlags> for DBusInterfaceSkeletonFlags

§

type Output = DBusInterfaceSkeletonFlags

§

impl BitXor<DBusMessageFlags> for DBusMessageFlags

§

type Output = DBusMessageFlags

§

impl BitXor<DBusProxyFlags> for DBusProxyFlags

§

type Output = DBusProxyFlags

§

impl BitXor<DBusSendMessageFlags> for DBusSendMessageFlags

§

type Output = DBusSendMessageFlags

§

impl BitXor<DBusServerFlags> for DBusServerFlags

§

type Output = DBusServerFlags

§

impl BitXor<DBusSignalFlags> for DBusSignalFlags

§

type Output = DBusSignalFlags

§

impl BitXor<DestDefaults> for DestDefaults

§

type Output = DestDefaults

§

impl BitXor<DialogFlags> for DialogFlags

§

type Output = DialogFlags

§

impl BitXor<DragAction> for DragAction

§

type Output = DragAction

§

impl BitXor<DriveStartFlags> for DriveStartFlags

§

type Output = DriveStartFlags

§

impl BitXor<EventMask> for EventMask

§

type Output = EventMask

§

impl BitXor<FileAttributeInfoFlags> for FileAttributeInfoFlags

§

type Output = FileAttributeInfoFlags

§

impl BitXor<FileCopyFlags> for FileCopyFlags

§

type Output = FileCopyFlags

§

impl BitXor<FileCreateFlags> for FileCreateFlags

§

type Output = FileCreateFlags

§

impl BitXor<FileFilterFlags> for FileFilterFlags

§

type Output = FileFilterFlags

§

impl BitXor<FileMeasureFlags> for FileMeasureFlags

§

type Output = FileMeasureFlags

§

impl BitXor<FileMonitorFlags> for FileMonitorFlags

§

type Output = FileMonitorFlags

§

impl BitXor<FileQueryInfoFlags> for FileQueryInfoFlags

§

type Output = FileQueryInfoFlags

§

impl BitXor<FontMask> for FontMask

§

type Output = FontMask

§

impl BitXor<FrameClockPhase> for FrameClockPhase

§

type Output = FrameClockPhase

§

impl BitXor<HyperlinkStateFlags> for HyperlinkStateFlags

§

type Output = HyperlinkStateFlags

§

impl BitXor<IOStreamSpliceFlags> for IOStreamSpliceFlags

§

type Output = IOStreamSpliceFlags

§

impl BitXor<IconLookupFlags> for IconLookupFlags

§

type Output = IconLookupFlags

§

impl BitXor<InputHints> for InputHints

§

type Output = InputHints

§

impl BitXor<JunctionSides> for JunctionSides

§

type Output = JunctionSides

§

impl BitXor<ModifierType> for ModifierType

§

type Output = ModifierType

§

impl BitXor<Modifiers> for Modifiers

§

type Output = Modifiers

§

impl BitXor<MountMountFlags> for MountMountFlags

§

type Output = MountMountFlags

§

impl BitXor<MountUnmountFlags> for MountUnmountFlags

§

type Output = MountUnmountFlags

§

impl BitXor<OutputStreamSpliceFlags> for OutputStreamSpliceFlags

§

type Output = OutputStreamSpliceFlags

§

impl BitXor<PixbufFormatFlags> for PixbufFormatFlags

§

type Output = PixbufFormatFlags

§

impl BitXor<PlacesOpenFlags> for PlacesOpenFlags

§

type Output = PlacesOpenFlags

§

impl BitXor<RecentFilterFlags> for RecentFilterFlags

§

type Output = RecentFilterFlags

§

impl BitXor<RegionFlags> for RegionFlags

§

type Output = RegionFlags

§

impl BitXor<ResourceLookupFlags> for ResourceLookupFlags

§

type Output = ResourceLookupFlags

§

impl BitXor<SeatCapabilities> for SeatCapabilities

§

type Output = SeatCapabilities

§

impl BitXor<SerializeFlags> for SerializeFlags

§

type Output = SerializeFlags

§

impl BitXor<SettingsBindFlags> for SettingsBindFlags

§

type Output = SettingsBindFlags

§

impl BitXor<ShapeFlags> for ShapeFlags

§

type Output = ShapeFlags

§

impl BitXor<ShowFlags> for ShowFlags

§

type Output = ShowFlags

§

impl BitXor<StateFlags> for StateFlags

§

type Output = StateFlags

§

impl BitXor<StyleContextPrintFlags> for StyleContextPrintFlags

§

type Output = StyleContextPrintFlags

§

impl BitXor<SubprocessFlags> for SubprocessFlags

§

type Output = SubprocessFlags

§

impl BitXor<TargetFlags> for TargetFlags

§

type Output = TargetFlags

§

impl BitXor<TextSearchFlags> for TextSearchFlags

§

type Output = TextSearchFlags

§

impl BitXor<TlsCertificateFlags> for TlsCertificateFlags

§

type Output = TlsCertificateFlags

§

impl BitXor<TlsDatabaseVerifyFlags> for TlsDatabaseVerifyFlags

§

type Output = TlsDatabaseVerifyFlags

§

impl BitXor<TlsPasswordFlags> for TlsPasswordFlags

§

type Output = TlsPasswordFlags

§

impl BitXor<ToolPaletteDragTargets> for ToolPaletteDragTargets

§

type Output = ToolPaletteDragTargets

§

impl BitXor<Transformations> for Transformations

§

type Output = Transformations

§

impl BitXor<TreeModelFlags> for TreeModelFlags

§

type Output = TreeModelFlags

§

impl BitXor<WMDecoration> for WMDecoration

§

type Output = WMDecoration

§

impl BitXor<WMFunction> for WMFunction

§

type Output = WMFunction

§

impl BitXor<WindowHints> for WindowHints

§

type Output = WindowHints

§

impl BitXor<WindowState> for WindowState

§

type Output = WindowState

const: unstable · source§

impl<'a> BitXor<bool> for &'a bool

const: unstable · source§

impl<'a> BitXor<i8> for &'a i8

§

type Output = <i8 as BitXor<i8>>::Output

const: unstable · source§

impl<'a> BitXor<i16> for &'a i16

§

type Output = <i16 as BitXor<i16>>::Output

const: unstable · source§

impl<'a> BitXor<i32> for &'a i32

§

type Output = <i32 as BitXor<i32>>::Output

const: unstable · source§

impl<'a> BitXor<i64> for &'a i64

§

type Output = <i64 as BitXor<i64>>::Output

const: unstable · source§

impl<'a> BitXor<i128> for &'a i128

const: unstable · source§

impl<'a> BitXor<isize> for &'a isize

const: unstable · source§

impl<'a> BitXor<u8> for &'a u8

§

type Output = <u8 as BitXor<u8>>::Output

const: unstable · source§

impl<'a> BitXor<u16> for &'a u16

§

type Output = <u16 as BitXor<u16>>::Output

const: unstable · source§

impl<'a> BitXor<u32> for &'a u32

§

type Output = <u32 as BitXor<u32>>::Output

const: unstable · source§

impl<'a> BitXor<u64> for &'a u64

§

type Output = <u64 as BitXor<u64>>::Output

const: unstable · source§

impl<'a> BitXor<u128> for &'a u128

const: unstable · source§

impl<'a> BitXor<usize> for &'a usize

source§

impl<'a> BitXor<Saturating<i8>> for &'a Saturating<i8>

source§

impl<'a> BitXor<Saturating<i16>> for &'a Saturating<i16>

source§

impl<'a> BitXor<Saturating<i32>> for &'a Saturating<i32>

source§

impl<'a> BitXor<Saturating<i64>> for &'a Saturating<i64>

source§

impl<'a> BitXor<Saturating<i128>> for &'a Saturating<i128>

source§

impl<'a> BitXor<Saturating<isize>> for &'a Saturating<isize>

source§

impl<'a> BitXor<Saturating<u8>> for &'a Saturating<u8>

source§

impl<'a> BitXor<Saturating<u16>> for &'a Saturating<u16>

source§

impl<'a> BitXor<Saturating<u32>> for &'a Saturating<u32>

source§

impl<'a> BitXor<Saturating<u64>> for &'a Saturating<u64>

source§

impl<'a> BitXor<Saturating<u128>> for &'a Saturating<u128>

source§

impl<'a> BitXor<Saturating<usize>> for &'a Saturating<usize>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<i8>> for &'a Wrapping<i8>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<i16>> for &'a Wrapping<i16>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<i32>> for &'a Wrapping<i32>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<i64>> for &'a Wrapping<i64>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<i128>> for &'a Wrapping<i128>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<isize>> for &'a Wrapping<isize>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<u8>> for &'a Wrapping<u8>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<u16>> for &'a Wrapping<u16>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<u32>> for &'a Wrapping<u32>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<u64>> for &'a Wrapping<u64>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<u128>> for &'a Wrapping<u128>

1.14.0 (const: unstable) · source§

impl<'a> BitXor<Wrapping<usize>> for &'a Wrapping<usize>

source§

impl<'lhs, 'rhs, T, const LANES: usize> BitXor<&'rhs Simd<T, LANES>> for &'lhs Simd<T, LANES>where T: SimdElement, Simd<T, LANES>: BitXor<Simd<T, LANES>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

§

impl<Size> BitXor<Bitmap<Size>> for Bitmap<Size>where Size: Bits,

§

type Output = Bitmap<Size>

source§

impl<T, A> BitXor<&BTreeSet<T, A>> for &BTreeSet<T, A>where T: Ord + Clone, A: Allocator + Clone,

§

type Output = BTreeSet<T, A>

source§

impl<T, S> BitXor<&HashSet<T, S>> for &HashSet<T, S>where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = HashSet<T, S>

source§

impl<T, const LANES: usize> BitXor<&Simd<T, LANES>> for Simd<T, LANES>where T: SimdElement, Simd<T, LANES>: BitXor<Simd<T, LANES>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

source§

impl<T, const LANES: usize> BitXor<bool> for Mask<T, LANES>where T: MaskElement, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Mask<T, LANES>

source§

impl<T, const LANES: usize> BitXor<Mask<T, LANES>> for boolwhere T: MaskElement, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Mask<T, LANES>

source§

impl<T, const LANES: usize> BitXor<Mask<T, LANES>> for Mask<T, LANES>where T: MaskElement, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Mask<T, LANES>

source§

impl<T, const LANES: usize> BitXor<Simd<T, LANES>> for &Simd<T, LANES>where T: SimdElement, Simd<T, LANES>: BitXor<Simd<T, LANES>, Output = Simd<T, LANES>>, LaneCount<LANES>: SupportedLaneCount,

§

type Output = Simd<T, LANES>

source§

impl<Ul, Bl, Ur> BitXor<Ur> for UInt<Ul, Bl>where Ul: Unsigned, Bl: Bit, Ur: Unsigned, UInt<Ul, Bl>: PrivateXor<Ur>, <UInt<Ul, Bl> as PrivateXor<Ur>>::Output: Trim,

Xoring unsigned integers. We use our PrivateXor operator and then Trim the output.

§

type Output = <<UInt<Ul, Bl> as PrivateXor<Ur>>::Output as Trim>::Output

source§

impl<Ur> BitXor<Ur> for UTermwhere Ur: Unsigned,

0 ^ X = X

§

type Output = Ur

source§

impl<const N: usize> BitXor<Simd<i8, N>> for Simd<i8, N>where i8: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i8, N>

source§

impl<const N: usize> BitXor<Simd<i16, N>> for Simd<i16, N>where i16: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i16, N>

source§

impl<const N: usize> BitXor<Simd<i32, N>> for Simd<i32, N>where i32: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i32, N>

source§

impl<const N: usize> BitXor<Simd<i64, N>> for Simd<i64, N>where i64: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<i64, N>

source§

impl<const N: usize> BitXor<Simd<isize, N>> for Simd<isize, N>where isize: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<isize, N>

source§

impl<const N: usize> BitXor<Simd<u8, N>> for Simd<u8, N>where u8: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u8, N>

source§

impl<const N: usize> BitXor<Simd<u16, N>> for Simd<u16, N>where u16: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u16, N>

source§

impl<const N: usize> BitXor<Simd<u32, N>> for Simd<u32, N>where u32: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u32, N>

source§

impl<const N: usize> BitXor<Simd<u64, N>> for Simd<u64, N>where u64: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<u64, N>

source§

impl<const N: usize> BitXor<Simd<usize, N>> for Simd<usize, N>where usize: SimdElement, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<usize, N>