Source of the transaction data.
Variants
Methods
fn camt() -> TransactionSource
Create a new TransactionSource::Camt
Example
let source = camt;
assert!;
fn raise_now() -> TransactionSource
Create a new TransactionSource::RaiseNow
Example
let source = raise_now;
assert!;
Check if the source is RaiseNow
Example
let source = raise_now;
assert!;
Clone the TransactionSource
Example
let source = camt;
let cloned = source.clone;
assert_eq!;
Protocols
protocol is_variant
Test if the provided argument is a variant.