We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bf193 commit c9c4f38Copy full SHA for c9c4f38
src/can.rs
@@ -205,10 +205,6 @@ pub trait FdTransmitter: FdInterface + Receiver {
205
/// If the buffer is full, this function will try to replace a lower priority `FdFrame`
206
/// and return it. This is to avoid the priority inversion problem.
207
fn transmit(&mut self, frame: &Self::FdFrame) -> nb::Result<Option<Self::FdFrame>, Self::Error>;
208
-
209
- /// Returns true if a call to `transmit(frame)` or `transmit_fd(fd_frame)`
210
- /// would return a `FdFrame` or `WouldBlock`.
211
- fn transmit_buffer_full(&self) -> bool;
212
}
213
214
/// A CAN-FD interface that is able to receive frames.
0 commit comments