pub trait TryShr<Rhs = Self> { type Error; type Output; // Required method fn try_shr(self, rhs: Rhs) -> Result<Self::Output, Self::Error>; }
The try trait for Shr.
Shr
The type returned in the event of an error.
The type returned after performing the operation.
The fallible equivalent of Shr::shr.
Shr::shr