Struct paillier::core::Plaintext [] [src]

pub struct Plaintext<I>(pub I);

Representation of unencrypted message.

Trait Implementations

impl<I: Debug> Debug for Plaintext<I>
[src]

Formats the value using the given formatter.

impl<I: Clone> Clone for Plaintext<I>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: PartialEq> PartialEq for Plaintext<I>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<I, T> From<T> for Plaintext<I> where T: Copy, I: From<T>
[src]

Performs the conversion.

impl<I> Display for Plaintext<I> where I: Display
[src]

Formats the value using the given formatter.