Enum snarkvm_console_program::Value
source · [−]Variants
Plaintext(Plaintext<N>)
A plaintext value.
Record(Record<N, Plaintext<N>>)
A record value.
Implementations
Trait Implementations
sourceimpl<'de, N: Network> Deserialize<'de> for Value<N>
impl<'de, N: Network> Deserialize<'de> for Value<N>
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserializes the value from a string or bytes.
sourceimpl<N: Network> Parser for Value<N>
impl<N: Network> Parser for Value<N>
sourcefn parse(string: &str) -> ParserResult<'_, Self>
fn parse(string: &str) -> ParserResult<'_, Self>
Parses a string into a value.
sourceimpl<N: Network> ToBits for Value<N>
impl<N: Network> ToBits for Value<N>
impl<N: Network> Eq for Value<N>
Auto Trait Implementations
impl<N> RefUnwindSafe for Value<N> where
N: RefUnwindSafe,
<N as Environment>::Field: RefUnwindSafe,
<N as Environment>::Projective: RefUnwindSafe,
<N as Environment>::Scalar: RefUnwindSafe,
impl<N> Send for Value<N>
impl<N> Sync for Value<N>
impl<N> Unpin for Value<N> where
N: Unpin,
<N as Environment>::Field: Unpin,
<N as Environment>::Projective: Unpin,
<N as Environment>::Scalar: Unpin,
impl<N> UnwindSafe for Value<N> where
N: UnwindSafe,
<N as Environment>::Field: UnwindSafe,
<N as Environment>::Projective: UnwindSafe,
<N as Environment>::Scalar: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.