encoder: move Self where clause to first position
diff --git a/src/encoder.rs b/src/encoder.rs
index 2a0f5de..a126e28 100644
--- a/src/encoder.rs
+++ b/src/encoder.rs
@@ -454,9 +454,9 @@
// method.
impl<'a, OP, P, InputDoneCb, OutputReadyCb> Encoder<Encoding<OP, P, InputDoneCb, OutputReadyCb>>
where
+ Self: GetFreeOutputBuffer<'a, OP, GetBufferError<OP>>,
OP: BufferHandles,
P: HandlesProvider,
- Self: GetFreeOutputBuffer<'a, OP, GetBufferError<OP>>,
InputDoneCb: Fn(CompletedOutputBuffer<OP>),
OutputReadyCb: FnMut(DQBuffer<Capture, P::HandleType>) + Send,
{