mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: apply same member order (#12253)
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user