Enum aleo_rust::snarkvm_types::Plaintext
pub enum Plaintext<N>where
N: Network,{
Literal(Literal<N>, OnceCell<Vec<bool, Global>>),
Struct(IndexMap<Identifier<N>, Plaintext<N>, RandomState>, OnceCell<Vec<bool, Global>>),
}
Variants§
Literal(Literal<N>, OnceCell<Vec<bool, Global>>)
A literal.
Struct(IndexMap<Identifier<N>, Plaintext<N>, RandomState>, OnceCell<Vec<bool, Global>>)
A struct.
Implementations§
§impl<N> Plaintext<N>where
N: Network,
impl<N> Plaintext<N>where N: Network,
pub fn encrypt(
&self,
address: &Address<N>,
randomizer: Scalar<N>
) -> Result<Ciphertext<N>, Error>
pub fn encrypt( &self, address: &Address<N>, randomizer: Scalar<N> ) -> Result<Ciphertext<N>, Error>
Encrypts self
to the given address under the given randomizer.
pub fn encrypt_symmetric(
&self,
plaintext_view_key: Field<N>
) -> Result<Ciphertext<N>, Error>
pub fn encrypt_symmetric( &self, plaintext_view_key: Field<N> ) -> Result<Ciphertext<N>, Error>
Encrypts self
under the given plaintext view key.
Trait Implementations§
§impl<'de, N> Deserialize<'de> for Plaintext<N>where
N: Network,
impl<'de, N> Deserialize<'de> for Plaintext<N>where N: Network,
§fn deserialize<D>(
deserializer: D
) -> Result<Plaintext<N>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<Plaintext<N>, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
Deserializes the plaintext from a string or bytes.
§impl<N> Equal<Plaintext<N>> for Plaintext<N>where
N: Network,
impl<N> Equal<Plaintext<N>> for Plaintext<N>where N: Network,
§fn is_equal(
&self,
other: &Plaintext<N>
) -> <Plaintext<N> as Equal<Plaintext<N>>>::Output
fn is_equal( &self, other: &Plaintext<N> ) -> <Plaintext<N> as Equal<Plaintext<N>>>::Output
Returns true
if self
and other
are equal.
§fn is_not_equal(
&self,
other: &Plaintext<N>
) -> <Plaintext<N> as Equal<Plaintext<N>>>::Output
fn is_not_equal( &self, other: &Plaintext<N> ) -> <Plaintext<N> as Equal<Plaintext<N>>>::Output
Returns true
if self
and other
are not equal.
type Output = Boolean<N>
§impl<N> Serialize for Plaintext<N>where
N: Network,
impl<N> Serialize for Plaintext<N>where N: Network,
§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,
Serializes the plaintext into a string or as bytes.
§impl<N> ToBits for Plaintext<N>where
N: Network,
impl<N> ToBits for Plaintext<N>where N: Network,
§fn to_bits_le(&self) -> Vec<bool, Global>
fn to_bits_le(&self) -> Vec<bool, Global>
Returns this plaintext as a list of little-endian bits.
§fn to_bits_be(&self) -> Vec<bool, Global>
fn to_bits_be(&self) -> Vec<bool, Global>
Returns this plaintext as a list of big-endian bits.
impl<N> Eq for Plaintext<N>where N: Network,
Auto Trait Implementations§
impl<N> RefUnwindSafe for Plaintext<N>where N: RefUnwindSafe, <N as Environment>::Field: RefUnwindSafe, <N as Environment>::Projective: RefUnwindSafe, <N as Environment>::Scalar: RefUnwindSafe,
impl<N> Send for Plaintext<N>
impl<N> Sync for Plaintext<N>
impl<N> Unpin for Plaintext<N>where N: Unpin, <N as Environment>::Field: Unpin, <N as Environment>::Projective: Unpin, <N as Environment>::Scalar: Unpin,
impl<N> UnwindSafe for Plaintext<N>where N: UnwindSafe, <N as Environment>::Field: UnwindSafe, <N as Environment>::Projective: UnwindSafe, <N as Environment>::Scalar: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<'de, T> DeserializeExt<'de> for Twhere
T: DeserializeOwned,
impl<'de, T> DeserializeExt<'de> for Twhere T: DeserializeOwned,
fn take_from_value<D>( value: &mut Value, field: &str ) -> Result<T, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.