pub trait Sendable<T: Transducer> {
    type H;
    type B;

    fn init(&mut self) -> Result<()>;
    fn pack(
        &mut self,
        msg_id: u8,
        geometry: &Geometry<T>,
        tx: &mut TxDatagram
    ) -> Result<()>; fn is_finished(&self) -> bool; }

Required Associated Types

Required Methods

Implementors