TryShl

Trait TryShl 

Source
pub trait TryShl<Rhs = Self> {
    type Error;
    type Output;

    // Required method
    fn try_shl(self, rhs: Rhs) -> Result<Self::Output, Self::Error>;
}
Expand description

The try trait for Shl.

Required Associated Types§

Source

type Error

The type returned in the event of an error.

Source

type Output

The type returned after performing the operation.

Required Methods§

Source

fn try_shl(self, rhs: Rhs) -> Result<Self::Output, Self::Error>

The fallible equivalent of Shl::shl.

Implementors§

Source§

impl<T: Shl<Rhs>, Rhs> TryShl<Rhs> for T