1 2 3 4 5 6 7 8 9 10
use crate::AUTDProtoBufError; pub(crate) mod driver; pub trait FromMessage<T> where Self: Sized, { fn from_msg(msg: T) -> Result<Self, AUTDProtoBufError>; }