pub enum CallMessage {
BondProver(u64),
UnbondProver,
VerifyProof(Vec<u8>),
}
Expand description
The call methods specified in this module
This enumeration represents the available call messages for interacting with the ExampleModule
module.
Variants§
BondProver(u64)
Bonds the prover with provided bond.
UnbondProver
Unbonds the prover.
VerifyProof(Vec<u8>)
Verifies the provided proof (of format Vec<u8>
)
Trait Implementations§
source§impl BorshDeserialize for CallMessagewhere
u64: BorshDeserialize,
Vec<u8>: BorshDeserialize,
impl BorshDeserialize for CallMessagewhere u64: BorshDeserialize, Vec<u8>: BorshDeserialize,
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where R: Read,
source§impl BorshSerialize for CallMessagewhere
u64: BorshSerialize,
Vec<u8>: BorshSerialize,
impl BorshSerialize for CallMessagewhere u64: BorshSerialize, Vec<u8>: BorshSerialize,
source§impl Debug for CallMessage
impl Debug for CallMessage
source§impl EnumExt for CallMessagewhere
u64: BorshDeserialize,
Vec<u8>: BorshDeserialize,
impl EnumExt for CallMessagewhere u64: BorshDeserialize, Vec<u8>: BorshDeserialize,
source§impl PartialEq<CallMessage> for CallMessage
impl PartialEq<CallMessage> for CallMessage
source§fn eq(&self, other: &CallMessage) -> bool
fn eq(&self, other: &CallMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CallMessage
Auto Trait Implementations§
impl RefUnwindSafe for CallMessage
impl Send for CallMessage
impl Sync for CallMessage
impl Unpin for CallMessage
impl UnwindSafe for CallMessage
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