autd3-protobuf 25.1.0

Protocol Buffer
Documentation
#[cfg(feature = "lightweight")]
mod autd3;
mod driver;
#[cfg(feature = "lightweight")]
mod holo;

pub trait ToMessage {
    type Message: prost::Message;

    fn to_msg(&self, geometry: Option<&autd3_driver::geometry::Geometry>) -> Self::Message;
}

pub trait FromMessage<T: prost::Message>
where
    Self: Sized,
{
    fn from_msg(msg: &T) -> Option<Self>;
}

#[cfg(feature = "lightweight")]
pub use driver::to_transition_mode;