(&self, other: &Self)
| 943 | V: Into<Value> + std::cmp::PartialEq, |
| 944 | { |
| 945 | fn eq(&self, other: &Self) -> bool { |
| 946 | match (self, other) { |
| 947 | (ActiveValue::Set(l), ActiveValue::Set(r)) => l == r, |
| 948 | (ActiveValue::Unchanged(l), ActiveValue::Unchanged(r)) => l == r, |
| 949 | (ActiveValue::NotSet, ActiveValue::NotSet) => true, |
| 950 | _ => false, |
| 951 | } |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | impl<V> From<ActiveValue<V>> for ActiveValue<Option<V>> |
no outgoing calls
no test coverage detected