pub enum BaseAtomicPredicateCallInputs {
Decide {
inputs: Vec<Vec<u8>>,
},
DecideWithWitness {
inputs: Vec<Vec<u8>>,
witness: Vec<Vec<u8>>,
},
DecideTrue {
inputs: Vec<Vec<u8>>,
},
}Variants§
Trait Implementations§
Source§impl Clone for BaseAtomicPredicateCallInputs
impl Clone for BaseAtomicPredicateCallInputs
Source§fn clone(&self) -> BaseAtomicPredicateCallInputs
fn clone(&self) -> BaseAtomicPredicateCallInputs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Decode for BaseAtomicPredicateCallInputs
impl Decode for BaseAtomicPredicateCallInputs
Source§impl Encode for BaseAtomicPredicateCallInputs
impl Encode for BaseAtomicPredicateCallInputs
Source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
impl EncodeLike for BaseAtomicPredicateCallInputs
impl Eq for BaseAtomicPredicateCallInputs
Source§impl Hash for BaseAtomicPredicateCallInputs
impl Hash for BaseAtomicPredicateCallInputs
impl StructuralPartialEq for BaseAtomicPredicateCallInputs
Auto Trait Implementations§
impl Freeze for BaseAtomicPredicateCallInputs
impl RefUnwindSafe for BaseAtomicPredicateCallInputs
impl Send for BaseAtomicPredicateCallInputs
impl Sync for BaseAtomicPredicateCallInputs
impl Unpin for BaseAtomicPredicateCallInputs
impl UnsafeUnpin for BaseAtomicPredicateCallInputs
impl UnwindSafe for BaseAtomicPredicateCallInputs
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