halo2_axiom::transcript

Trait TranscriptWriterBuffer

Source
pub trait TranscriptWriterBuffer<W: Write, C: CurveAffine, E: EncodedChallenge<C>>: TranscriptWrite<C, E> {
    // Required methods
    fn init(writer: W) -> Self;
    fn finalize(self) -> W;
}
Expand description

Manages begining and finising of transcript pipeline.

Required Methods§

Source

fn init(writer: W) -> Self

Initialize a transcript given an output buffer.

Source

fn finalize(self) -> W

Conclude the interaction and return the output buffer (writer).

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§