mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-28 05:12:34 +00:00
cargo fmt
This commit is contained in:
@@ -367,8 +367,18 @@ impl CalendarParsedRXingResult {
|
||||
|
||||
impl PartialEq for CalendarParsedRXingResult {
|
||||
fn eq(&self, other: &Self) -> bool {
|
||||
self.summary == other.summary && self.start == other.start && self.startAllDay == other.startAllDay && self.end == other.end && self.endAllDay == other.endAllDay && self.location == other.location && self.organizer == other.organizer && self.attendees == other.attendees && self.description == other.description && self.latitude == other.latitude && self.longitude == other.longitude
|
||||
self.summary == other.summary
|
||||
&& self.start == other.start
|
||||
&& self.startAllDay == other.startAllDay
|
||||
&& self.end == other.end
|
||||
&& self.endAllDay == other.endAllDay
|
||||
&& self.location == other.location
|
||||
&& self.organizer == other.organizer
|
||||
&& self.attendees == other.attendees
|
||||
&& self.description == other.description
|
||||
&& self.latitude == other.latitude
|
||||
&& self.longitude == other.longitude
|
||||
}
|
||||
}
|
||||
|
||||
impl Eq for CalendarParsedRXingResult {}
|
||||
impl Eq for CalendarParsedRXingResult {}
|
||||
|
||||
Reference in New Issue
Block a user