Trait NetdocBuilder

Source
pub(crate) trait NetdocBuilder {
    // Required method
    fn build_sign<R>(self, rng: &mut R) -> Result<String, EncodeError>
       where R: RngCore + CryptoRng;
}
Expand description

A trait for building and signing netdocs.

Required Methods§

Source

fn build_sign<R>(self, rng: &mut R) -> Result<String, EncodeError>
where R: RngCore + CryptoRng,

Build the document into textual form.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§