pub enum Input {
CoinSigned {
utxo_id: UtxoId,
owner: Address,
amount: Word,
asset_id: AssetId,
tx_pointer: TxPointer,
witness_index: u8,
maturity: Word,
},
CoinPredicate {
utxo_id: UtxoId,
owner: Address,
amount: Word,
asset_id: AssetId,
tx_pointer: TxPointer,
maturity: Word,
predicate: Vec<u8>,
predicate_data: Vec<u8>,
},
Contract {
utxo_id: UtxoId,
balance_root: Bytes32,
state_root: Bytes32,
tx_pointer: TxPointer,
contract_id: ContractId,
},
MessageSigned {
message_id: MessageId,
sender: Address,
recipient: Address,
amount: Word,
nonce: Word,
witness_index: u8,
data: Vec<u8>,
},
MessagePredicate {
message_id: MessageId,
sender: Address,
recipient: Address,
amount: Word,
nonce: Word,
data: Vec<u8>,
predicate: Vec<u8>,
predicate_data: Vec<u8>,
},
}
Variants§
CoinSigned
Fields
CoinPredicate
Fields
Contract
Fields
§
contract_id: ContractId
MessageSigned
Fields
MessagePredicate
Implementations§
source§impl Input
impl Input
pub const fn repr(&self) -> InputRepr
pub fn owner(pk: &PublicKey) -> Address
pub const fn coin_predicate( utxo_id: UtxoId, owner: Address, amount: Word, asset_id: AssetId, tx_pointer: TxPointer, maturity: Word, predicate: Vec<u8>, predicate_data: Vec<u8> ) -> Self
pub const fn coin_signed( utxo_id: UtxoId, owner: Address, amount: Word, asset_id: AssetId, tx_pointer: TxPointer, witness_index: u8, maturity: Word ) -> Self
pub const fn contract( utxo_id: UtxoId, balance_root: Bytes32, state_root: Bytes32, tx_pointer: TxPointer, contract_id: ContractId ) -> Self
pub const fn message_signed( message_id: MessageId, sender: Address, recipient: Address, amount: Word, nonce: Word, witness_index: u8, data: Vec<u8> ) -> Self
pub const fn message_predicate( message_id: MessageId, sender: Address, recipient: Address, amount: Word, nonce: Word, data: Vec<u8>, predicate: Vec<u8>, predicate_data: Vec<u8> ) -> Self
pub const fn utxo_id(&self) -> Option<&UtxoId>
pub const fn input_owner(&self) -> Option<&Address>
pub const fn asset_id(&self) -> Option<&AssetId>
pub const fn contract_id(&self) -> Option<&ContractId>
pub const fn amount(&self) -> Option<Word>
pub const fn witness_index(&self) -> Option<u8>
pub const fn maturity(&self) -> Option<Word>
pub fn predicate_offset(&self) -> Option<usize>
pub fn predicate_data_offset(&self) -> Option<usize>
pub fn predicate_len(&self) -> Option<usize>
pub fn predicate_data_len(&self) -> Option<usize>
pub const fn message_id(&self) -> Option<&MessageId>
pub const fn tx_pointer(&self) -> Option<&TxPointer>
pub fn input_data(&self) -> Option<&[u8]>
pub fn input_predicate(&self) -> Option<&[u8]>
pub fn input_predicate_data(&self) -> Option<&[u8]>
sourcepub fn predicate(&self) -> Option<(&[u8], &[u8])>
pub fn predicate(&self) -> Option<(&[u8], &[u8])>
Return a tuple containing the predicate and its data if the input is of
type CoinPredicate
or MessagePredicate
pub const fn is_coin(&self) -> bool
pub const fn is_coin_signed(&self) -> bool
pub const fn is_coin_predicate(&self) -> bool
pub const fn is_message(&self) -> bool
pub const fn is_message_signed(&self) -> bool
pub const fn is_message_predicate(&self) -> bool
pub const fn is_contract(&self) -> bool
pub const fn coin_predicate_offset() -> usize
pub const fn message_data_offset() -> usize
pub const fn balance_root(&self) -> Option<&Bytes32>
pub const fn state_root(&self) -> Option<&Bytes32>
pub const fn sender(&self) -> Option<&Address>
pub const fn recipient(&self) -> Option<&Address>
pub const fn nonce(&self) -> Option<Word>
pub fn compute_message_id( sender: &Address, recipient: &Address, nonce: Word, amount: Word, data: &[u8] ) -> MessageId
pub fn predicate_owner<P>(predicate: P) -> Addresswhere P: AsRef<[u8]>,
pub fn is_predicate_owner_valid<P>(owner: &Address, predicate: P) -> boolwhere P: AsRef<[u8]>,
sourcepub fn prepare_init_predicate(&mut self)
pub fn prepare_init_predicate(&mut self)
Prepare the output for VM predicate execution
source§impl Input
impl Input
pub fn check( &self, index: usize, txhash: &Bytes32, outputs: &[Output], witnesses: &[Witness], parameters: &ConsensusParameters ) -> Result<(), CheckError>
pub fn check_signature( &self, index: usize, txhash: &Bytes32, witnesses: &[Witness] ) -> Result<(), CheckError>
pub fn check_without_signature( &self, index: usize, outputs: &[Output], witnesses: &[Witness], parameters: &ConsensusParameters ) -> Result<(), CheckError>
Trait Implementations§
source§impl PartialEq<Input> for Input
impl PartialEq<Input> for Input
source§impl Read for Input
impl Read for Input
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
1.36.0 · source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like
read
, except that it reads into a slice of buffers. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into
buf
. Read more1.0.0 · source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to
buf
. Read more1.6.0 · source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill
buf
. Read moresource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Read the exact number of bytes required to fill
cursor
. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere Self: Sized,
Creates a “by reference” adaptor for this instance of
Read
. Read moresource§impl SizedBytes for Input
impl SizedBytes for Input
source§fn serialized_size(&self) -> usize
fn serialized_size(&self) -> usize
Return the expected serialized size for an instance of the type.
source§impl Write for Input
impl Write for Input
source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
impl Eq for Input
impl StructuralEq for Input
impl StructuralPartialEq for Input
Auto Trait Implementations§
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
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
source§impl<T> Deserializable for Twhere
T: Default + Write,
impl<T> Deserializable for Twhere T: Default + Write,
§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