Plaintext

Type Alias Plaintext 

Source
pub type Plaintext = Plaintext<CurrentNetwork>;

Aliased Type§

pub enum Plaintext {
    Literal(Literal<Testnet3>, OnceCell<Vec<bool>>),
    Struct(IndexMap<Identifier<Testnet3>, Plaintext<Testnet3>>, OnceCell<Vec<bool>>),
    Array(Vec<Plaintext<Testnet3>>, OnceCell<Vec<bool>>),
}

Variants§

§

Literal(Literal<Testnet3>, OnceCell<Vec<bool>>)

A literal.

§

Struct(IndexMap<Identifier<Testnet3>, Plaintext<Testnet3>>, OnceCell<Vec<bool>>)

A struct.

§

Array(Vec<Plaintext<Testnet3>>, OnceCell<Vec<bool>>)

An array.