Struct ergo_lib::chain::ergo_box::ErgoBoxCandidate [−][src]
pub struct ErgoBoxCandidate { pub value: BoxValue, pub ergo_tree: ErgoTree, pub tokens: Vec<Token>, pub additional_registers: NonMandatoryRegisters, pub creation_height: u32, }
Expand description
Contains the same fields as ErgoBox
, except if transaction id and index,
that will be calculated after full transaction formation.
Use box_builder::ErgoBoxCandidateBuilder
to create an instance.
Fields
value: BoxValue
amount of money associated with the box
ergo_tree: ErgoTree
guarding script, which should be evaluated to true in order to open this box
tokens: Vec<Token>
secondary tokens the box contains
additional_registers: NonMandatoryRegisters
additional registers the box can carry over
creation_height: u32
height when a transaction containing the box was created. This height is declared by user and should not exceed height of the block, containing the transaction with this box.
Implementations
impl ErgoBoxCandidate
[src]
impl ErgoBoxCandidate
[src]pub fn serialize_body_with_indexed_digests<W: SigmaByteWrite>(
&self,
token_ids_in_tx: Option<&IndexSet<TokenId>>,
w: &mut W
) -> Result<(), Error>
[src]
pub fn serialize_body_with_indexed_digests<W: SigmaByteWrite>(
&self,
token_ids_in_tx: Option<&IndexSet<TokenId>>,
w: &mut W
) -> Result<(), Error>
[src]Box serialization with token ids optionally saved in transaction (in this case only token index is saved)
pub fn parse_body_with_indexed_digests<R: SigmaByteRead>(
digests_in_tx: Option<&IndexSet<TokenId>>,
r: &mut R
) -> Result<ErgoBoxCandidate, SerializationError>
[src]
pub fn parse_body_with_indexed_digests<R: SigmaByteRead>(
digests_in_tx: Option<&IndexSet<TokenId>>,
r: &mut R
) -> Result<ErgoBoxCandidate, SerializationError>
[src]Box deserialization with token ids optionally parsed in transaction
Trait Implementations
impl Clone for ErgoBoxCandidate
[src]
impl Clone for ErgoBoxCandidate
[src]fn clone(&self) -> ErgoBoxCandidate
[src]
fn clone(&self) -> ErgoBoxCandidate
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for ErgoBoxCandidate
[src]
impl Debug for ErgoBoxCandidate
[src]impl<'de> Deserialize<'de> for ErgoBoxCandidate
[src]
impl<'de> Deserialize<'de> for ErgoBoxCandidate
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl ErgoBoxAssets for ErgoBoxCandidate
[src]
impl ErgoBoxAssets for ErgoBoxCandidate
[src]impl From<ErgoBox> for ErgoBoxCandidate
[src]
impl From<ErgoBox> for ErgoBoxCandidate
[src]impl PartialEq<ErgoBoxCandidate> for ErgoBoxCandidate
[src]
impl PartialEq<ErgoBoxCandidate> for ErgoBoxCandidate
[src]fn eq(&self, other: &ErgoBoxCandidate) -> bool
[src]
fn eq(&self, other: &ErgoBoxCandidate) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ErgoBoxCandidate) -> bool
[src]
fn ne(&self, other: &ErgoBoxCandidate) -> bool
[src]This method tests for !=
.
impl Serialize for ErgoBoxCandidate
[src]
impl Serialize for ErgoBoxCandidate
[src]impl SigmaSerializable for ErgoBoxCandidate
[src]
impl SigmaSerializable for ErgoBoxCandidate
[src]fn sigma_serialize<W: SigmaByteWrite>(&self, w: &mut W) -> Result<(), Error>
[src]
fn sigma_serialize<W: SigmaByteWrite>(&self, w: &mut W) -> Result<(), Error>
[src]Write self
to the given writer
.
This function has a sigma_
prefix to alert the reader that the
serialization in use is consensus-critical serialization
Notice that the error type is std::io::Error
; this indicates that
serialization MUST be infallible up to errors in the underlying writer.
In other words, any type implementing SigmaSerializable
must make illegal states unrepresentable. Read more
fn sigma_parse<R: SigmaByteRead>(r: &mut R) -> Result<Self, SerializationError>
[src]
fn sigma_parse<R: SigmaByteRead>(r: &mut R) -> Result<Self, SerializationError>
[src]Try to read self
from the given reader
.
sigma-
prefix to alert the reader that the serialization in use
is consensus-critical Read more
fn sigma_serialize_bytes(&self) -> Vec<u8, Global>
[src]
fn sigma_serialize_bytes(&self) -> Vec<u8, Global>
[src]Serialize any SigmaSerializable value into bytes
fn sigma_parse_bytes(bytes: &[u8]) -> Result<Self, SerializationError>
[src]
fn sigma_parse_bytes(bytes: &[u8]) -> Result<Self, SerializationError>
[src]Parse self
from the bytes
impl Eq for ErgoBoxCandidate
[src]
impl StructuralEq for ErgoBoxCandidate
[src]
impl StructuralPartialEq for ErgoBoxCandidate
[src]
Auto Trait Implementations
impl !RefUnwindSafe for ErgoBoxCandidate
impl !Send for ErgoBoxCandidate
impl !Sync for ErgoBoxCandidate
impl Unpin for ErgoBoxCandidate
impl UnwindSafe for ErgoBoxCandidate
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<F> TryExtractInto<F> for F
[src]
impl<F> TryExtractInto<F> for F
[src]pub fn try_extract_into<T>(self) -> Result<T, TryExtractFromError> where
T: TryExtractFrom<F>,
[src]
pub fn try_extract_into<T>(self) -> Result<T, TryExtractFromError> where
T: TryExtractFrom<F>,
[src]Extract value of the given type from any type (e.g. [‘Constant’], super::value::Value
)
on which TryExtractFrom
is implemented Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,