acl: cargo fmt

This commit is contained in:
George Kaklamanos 2023-11-20 21:37:48 +02:00
parent 3215630aab
commit f09de29ee4

View file

@ -28,16 +28,14 @@ pub struct LogEntry {
}
impl PartialEq for AuthMethod {
fn eq(&self, other: &Self) -> bool{
(self.method == other.method)
&& (self.identifier == other.identifier)
fn eq(&self, other: &Self) -> bool {
(self.method == other.method) && (self.identifier == other.identifier)
}
}
impl PartialEq for ResourceShortcuts {
fn eq(&self, other: &Self) -> bool{
(self.username == other.username)
&& (self.id == other.id)
fn eq(&self, other: &Self) -> bool {
(self.username == other.username) && (self.id == other.id)
}
}