autd3-protobuf 36.0.0

gRPC protobuf for autd3
Documentation
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>;
}