@@ -114,7 +114,7 @@ not_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
114
114
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
115
115
#[ rustc_on_unimplemented( message="no implementation for `{Self} & {RHS}`" ,
116
116
label="no implementation for `{Self} & {RHS}`" ) ]
117
- pub trait BitAnd < RHS = Self > {
117
+ pub trait BitAnd < RHS = Self > {
118
118
/// The resulting type after applying the `&` operator.
119
119
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
120
120
type Output ;
@@ -198,7 +198,7 @@ bitand_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
198
198
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
199
199
#[ rustc_on_unimplemented( message="no implementation for `{Self} | {RHS}`" ,
200
200
label="no implementation for `{Self} | {RHS}`" ) ]
201
- pub trait BitOr < RHS = Self > {
201
+ pub trait BitOr < RHS = Self > {
202
202
/// The resulting type after applying the `|` operator.
203
203
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
204
204
type Output ;
@@ -285,7 +285,7 @@ bitor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
285
285
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
286
286
#[ rustc_on_unimplemented( message="no implementation for `{Self} ^ {RHS}`" ,
287
287
label="no implementation for `{Self} ^ {RHS}`" ) ]
288
- pub trait BitXor < RHS = Self > {
288
+ pub trait BitXor < RHS = Self > {
289
289
/// The resulting type after applying the `^` operator.
290
290
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
291
291
type Output ;
@@ -373,7 +373,7 @@ bitxor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
373
373
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
374
374
#[ rustc_on_unimplemented( message="no implementation for `{Self} << {RHS}`" ,
375
375
label="no implementation for `{Self} << {RHS}`" ) ]
376
- pub trait Shl < RHS = Self > {
376
+ pub trait Shl < RHS = Self > {
377
377
/// The resulting type after applying the `<<` operator.
378
378
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
379
379
type Output ;
@@ -482,7 +482,7 @@ shl_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 isize i128 }
482
482
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
483
483
#[ rustc_on_unimplemented( message="no implementation for `{Self} >> {RHS}`" ,
484
484
label="no implementation for `{Self} >> {RHS}`" ) ]
485
- pub trait Shr < RHS = Self > {
485
+ pub trait Shr < RHS = Self > {
486
486
/// The resulting type after applying the `>>` operator.
487
487
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
488
488
type Output ;
@@ -598,7 +598,7 @@ shr_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
598
598
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
599
599
#[ rustc_on_unimplemented( message="no implementation for `{Self} &= {Rhs}`" ,
600
600
label="no implementation for `{Self} &= {Rhs}`" ) ]
601
- pub trait BitAndAssign < Rhs = Self > {
601
+ pub trait BitAndAssign < Rhs = Self > {
602
602
/// Performs the `&=` operation.
603
603
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
604
604
fn bitand_assign ( & mut self , rhs : Rhs ) ;
@@ -647,7 +647,7 @@ bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
647
647
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
648
648
#[ rustc_on_unimplemented( message="no implementation for `{Self} |= {Rhs}`" ,
649
649
label="no implementation for `{Self} |= {Rhs}`" ) ]
650
- pub trait BitOrAssign < Rhs = Self > {
650
+ pub trait BitOrAssign < Rhs = Self > {
651
651
/// Performs the `|=` operation.
652
652
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
653
653
fn bitor_assign ( & mut self , rhs : Rhs ) ;
@@ -696,7 +696,7 @@ bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
696
696
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
697
697
#[ rustc_on_unimplemented( message="no implementation for `{Self} ^= {Rhs}`" ,
698
698
label="no implementation for `{Self} ^= {Rhs}`" ) ]
699
- pub trait BitXorAssign < Rhs = Self > {
699
+ pub trait BitXorAssign < Rhs = Self > {
700
700
/// Performs the `^=` operation.
701
701
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
702
702
fn bitxor_assign ( & mut self , rhs : Rhs ) ;
@@ -743,7 +743,7 @@ bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
743
743
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
744
744
#[ rustc_on_unimplemented( message="no implementation for `{Self} <<= {Rhs}`" ,
745
745
label="no implementation for `{Self} <<= {Rhs}`" ) ]
746
- pub trait ShlAssign < Rhs = Self > {
746
+ pub trait ShlAssign < Rhs = Self > {
747
747
/// Performs the `<<=` operation.
748
748
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
749
749
fn shl_assign ( & mut self , rhs : Rhs ) ;
@@ -811,7 +811,7 @@ shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
811
811
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
812
812
#[ rustc_on_unimplemented( message="no implementation for `{Self} >>= {Rhs}`" ,
813
813
label="no implementation for `{Self} >>= {Rhs}`" ) ]
814
- pub trait ShrAssign < Rhs = Self > {
814
+ pub trait ShrAssign < Rhs = Self > {
815
815
/// Performs the `>>=` operation.
816
816
#[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
817
817
fn shr_assign ( & mut self , rhs : Rhs ) ;
0 commit comments