Struct diem_types::transaction::SignatureCheckedTransaction [−][src]
pub struct SignatureCheckedTransaction(_);Expand description
A transaction for which the signature has been verified. Created by
SignedTransaction::check_signature and RawTransaction::sign.
Implementations
pub fn script_strategy(
keypair_strategy: impl Strategy<Value = KeyPair<Ed25519PrivateKey, Ed25519PublicKey>>,
gas_currency_code_strategy: impl Strategy<Value = String>
) -> impl Strategy<Value = Self>
pub fn module_strategy(
keypair_strategy: impl Strategy<Value = KeyPair<Ed25519PrivateKey, Ed25519PublicKey>>,
gas_currency_code_strategy: impl Strategy<Value = String>
) -> impl Strategy<Value = Self>
pub fn write_set_strategy(
keypair_strategy: impl Strategy<Value = KeyPair<Ed25519PrivateKey, Ed25519PublicKey>>,
gas_currency_code_strategy: impl Strategy<Value = String>
) -> impl Strategy<Value = Self>
pub fn genesis_strategy(
keypair_strategy: impl Strategy<Value = KeyPair<Ed25519PrivateKey, Ed25519PublicKey>>,
gas_currency_code_strategy: impl Strategy<Value = String>
) -> impl Strategy<Value = Self>
Returns the SignedTransaction within.
Returns the RawTransaction within.
Methods from Deref<Target = SignedTransaction>
Trait Implementations
type Parameters = ()
type Parameters = ()
The type of parameters that arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default. Read more
type Strategy = BoxedStrategy<Self>
type Strategy = BoxedStrategy<Self>
type Target = SignedTransaction
type Target = SignedTransaction
The resulting type after dereferencing.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SignatureCheckedTransaction
impl Send for SignatureCheckedTransaction
impl Sync for SignatureCheckedTransaction
impl Unpin for SignatureCheckedTransaction
impl UnwindSafe for SignatureCheckedTransaction
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
type Output = T
type Output = T
Should always be Self