Lines Matching refs:Output
15 Add<Self, Output = Self> + AddAssign<Self> +
16 BitAnd<Self, Output = Self> + BitAndAssign<Self> +
17 BitOr<Self, Output = Self> + BitOrAssign<Self> +
18 BitXor<Self, Output = Self> + BitXorAssign<Self> +
20 Div<Self, Output = Self> + DivAssign<Self> +
22 Mul<Self, Output = Self> + MulAssign<Self> +
23 Not<Output = Self> + Ord + PartialOrd +
24 Rem<Self, Output = Self> + RemAssign<Self> +
25 Shl<Self, Output = Self> + ShlAssign<Self> +
26 Shl<u32, Output = Self> + ShlAssign<u32> + // add more as needed
27 Shr<Self, Output = Self> + ShrAssign<Self> +
28 Shr<u32, Output = Self> + ShrAssign<u32> // add more as needed