Lines Matching defs:Lit
282 (Expr::Lit(self0), Expr::Lit(other0)) => self0 == other0,
1247 impl Eq for Lit {}
1249 impl PartialEq for Lit {
1252 (Lit::Str(self0), Lit::Str(other0)) => self0 == other0,
1253 (Lit::ByteStr(self0), Lit::ByteStr(other0)) => self0 == other0,
1254 (Lit::Byte(self0), Lit::Byte(other0)) => self0 == other0,
1255 (Lit::Char(self0), Lit::Char(other0)) => self0 == other0,
1256 (Lit::Int(self0), Lit::Int(other0)) => self0 == other0,
1257 (Lit::Float(self0), Lit::Float(other0)) => self0 == other0,
1258 (Lit::Bool(self0), Lit::Bool(other0)) => self0 == other0,
1259 (Lit::Verbatim(self0), Lit::Verbatim(other0)) => {
1388 (Pat::Lit(self0), Pat::Lit(other0)) => self0 == other0,