[][src]Trait try_traits::ops::TryBitXorAssign

pub trait TryBitXorAssign<Rhs = Self> {
    type Error;
    fn try_bitxor_assign(&mut self, rhs: Rhs) -> Result<(), Self::Error>;
}

The try trait for BitXorAssign.

Associated Types

type Error

The type returned in the event of an error.

Loading content...

Required methods

fn try_bitxor_assign(&mut self, rhs: Rhs) -> Result<(), Self::Error>

The fallible equivalent of BitXorAssign::bitxor_assign.

Loading content...

Implementors

impl<T: BitXorAssign<Rhs>, Rhs> TryBitXorAssign<Rhs> for T[src]

type Error = Infallible

Loading content...