Lines Matching refs:e3
1135 let mut e3 = AnotherSetOfFlags::empty();
1136 e3.insert(AnotherSetOfFlags::ANOTHER_FLAG);
1137 assert_eq!(e3, AnotherSetOfFlags::ANOTHER_FLAG);
1147 let mut e3 = AnotherSetOfFlags::ANOTHER_FLAG;
1148 e3.remove(AnotherSetOfFlags::ANOTHER_FLAG);
1149 assert_eq!(e3, AnotherSetOfFlags::empty());
1161 let mut e3 = e1;
1162 e3.toggle(e2);
1163 assert_eq!(e3, Flags::A | Flags::B);
1181 let mut e3 = e1;
1182 e3.toggle(e2);
1183 assert_eq!(e3, Flags::A | Flags::B | extra);