diff options
| author | Christian Cunningham <c@localhost> | 2022-08-26 17:24:48 -0700 |
|---|---|---|
| committer | Christian Cunningham <c@localhost> | 2022-08-26 17:24:48 -0700 |
| commit | 2fa911d48f2a3d963eb6683a3633a5d52154e9a5 (patch) | |
| tree | 8d54b2124305b59e88e3b1d65517824b13f82211 /src | |
| parent | 0579fb14ef4be4f9ccbb621758ba1d2d7235a489 (diff) | |
*cargo fmt
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/queue.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/queue.rs b/src/util/queue.rs index b9e6edc..56122f7 100644 --- a/src/util/queue.rs +++ b/src/util/queue.rs @@ -3,6 +3,6 @@ pub trait Queue<'a> { type Data; fn init(&self); - fn pop(&self) -> Option<&mut Node<'a,Self::Data>>; - fn push(&self, freed_item: &mut Node<'a,Self::Data>); + fn pop(&self) -> Option<&mut Node<'a, Self::Data>>; + fn push(&self, freed_item: &mut Node<'a, Self::Data>); } |
