pub trait Publish {
type Options;
type Info;
type Error;
// Required method
fn publish(
&mut self,
options: Self::Options,
) -> Result<Self::Info, Self::Error>;
}Expand description
Publisher API trait used by publishers of service data