we can remove &self from builder maintenance function by cloning and passing in the values we need from &self
|
pub fn start( |
|
&self, |
|
mut bundle_flow: mpsc::UnboundedReceiver<Bundle>, |
|
mut state_events: mpsc::UnboundedReceiver<CanonStateNotification>, |
|
) { |
we can remove
&selffrom builder maintenance function by cloning and passing in the values we need from&selfevangelion/src/builder.rs
Lines 495 to 499 in b5317b2