pub trait Publisher {
    fn publish<'a>(
        &'a self,
        path: &'a str,
        options: PublishOptions<'a>
    ) -> Result<()>; }

Required methods

Implementors