[][src]Trait try_traits::ops::TryBitOrAssign

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

The try trait for BitOrAssign.

Associated Types

type Error

The type returned in the event of an error.

Loading content...

Required methods

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

The fallible equivalent of [BitOrAssign::bitor].

Loading content...

Implementors

impl<T: BitOrAssign<Rhs>, Rhs> TryBitOrAssign<Rhs> for T[src]

type Error = Infallible

Loading content...