Trait IntoBoxedDatagram

Source
pub trait IntoBoxedDatagram {
    // Required method
    fn into_boxed(self) -> BoxedDatagram;
}
Expand description

Trait to convert Datagram to BoxedDatagram.

Required Methods§

Implementors§

Source§

impl<E, G: OperationGenerator + 'static, D: Datagram<Error = E, G = G> + 'static> IntoBoxedDatagram for D
where AUTDDriverError: From<E> + From<<G::O1 as Operation>::Error> + From<<G::O2 as Operation>::Error>,