Struct paillier::coding::integral::scalar::Plaintext [] [src]

pub struct Plaintext<I, T> {
    pub data: Plaintext<I>,
    pub _phantom: PhantomData<T>,
}

Representation of unencrypted integral scalar.

Fields

Trait Implementations

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<I: PartialEq, T: PartialEq> PartialEq for Plaintext<I, T>
[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, T> where T: Copy, I: From<T>
[src]

Performs the conversion.