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