pub trait SyncRenderer: Send + Sync {
type Opts: Send + Sync;
// Required method
fn render(
&self,
manual: &ReferenceManual,
opts: &Self::Opts,
) -> Result<Vec<OutputFile>>;
}Expand description
Required Associated Types§
Required Methods§
Sourcefn render(
&self,
manual: &ReferenceManual,
opts: &Self::Opts,
) -> Result<Vec<OutputFile>>
fn render( &self, manual: &ReferenceManual, opts: &Self::Opts, ) -> Result<Vec<OutputFile>>
Renders a ReferenceManual into one or more output files.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".