chore: apply same member order (#12253)

This commit is contained in:
Matthias Seitz
2024-11-01 12:11:54 +01:00
committed by GitHub
parent 2758a560c0
commit c6b740801f
13 changed files with 98 additions and 98 deletions

View File

@ -108,11 +108,6 @@ where
});
}
fn without_head(mut self) -> Self {
self.set_without_head();
self
}
fn set_with_head(&mut self, exex_head: ExExHead) {
let current = std::mem::replace(&mut self.inner, ExExNotificationsInner::Invalid);
self.inner = ExExNotificationsInner::WithHead(match current {
@ -131,6 +126,11 @@ where
});
}
fn without_head(mut self) -> Self {
self.set_without_head();
self
}
fn with_head(mut self, exex_head: ExExHead) -> Self {
self.set_with_head(exex_head);
self