pub trait TryBitXor<Rhs = Self> {
type Error;
type Output;
// Required method
fn try_bitxor(self, rhs: Rhs) -> Result<Self::Output, Self::Error>;
}
Expand description
The try trait for BitXor
.
Required Associated Types§
Required Methods§
Sourcefn try_bitxor(self, rhs: Rhs) -> Result<Self::Output, Self::Error>
fn try_bitxor(self, rhs: Rhs) -> Result<Self::Output, Self::Error>
The fallible equivalent of BitXor::bitxor
.