Trait soroban_sdk::arbitrary::SorobanArbitrary
source · pub trait SorobanArbitrary: TryFromVal<Env, Self::Prototype> + IntoVal<Env, Val> + TryFromVal<Env, Val> {
type Prototype: for<'a> Arbitrary<'a>;
}
Available on crate feature
testutils
only.Expand description
Required Associated Types§
sourcetype Prototype: for<'a> Arbitrary<'a>
type Prototype: for<'a> Arbitrary<'a>
A type that implements Arbitrary
and can be converted to this
SorobanArbitrary
type.