pub enum ActionItemResponseType {
ReviewInput(ReviewedInputResponse),
ProvideInput(ProvidedInputResponse),
PickInputOption(String),
ProvidePublicKey(ProvidePublicKeyResponse),
ProvideSignedMessage(ProvideSignedMessageResponse),
ProvideSignedTransaction(ProvideSignedTransactionResponse),
VerifyThirdPartySignature(VerifyThirdPartySignatureResponse),
SendTransaction(SendTransactionResponse),
ValidateBlock,
ValidateModal,
}Variants§
ReviewInput(ReviewedInputResponse)
ProvideInput(ProvidedInputResponse)
PickInputOption(String)
ProvidePublicKey(ProvidePublicKeyResponse)
ProvideSignedMessage(ProvideSignedMessageResponse)
ProvideSignedTransaction(ProvideSignedTransactionResponse)
VerifyThirdPartySignature(VerifyThirdPartySignatureResponse)
SendTransaction(SendTransactionResponse)
ValidateBlock
ValidateModal
Implementations§
Source§impl ActionItemResponseType
impl ActionItemResponseType
pub fn is_validate_panel(&self) -> bool
Trait Implementations§
Source§impl Clone for ActionItemResponseType
impl Clone for ActionItemResponseType
Source§fn clone(&self) -> ActionItemResponseType
fn clone(&self) -> ActionItemResponseType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActionItemResponseType
impl Debug for ActionItemResponseType
Source§impl<'de> Deserialize<'de> for ActionItemResponseType
impl<'de> Deserialize<'de> for ActionItemResponseType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActionItemResponseType
impl RefUnwindSafe for ActionItemResponseType
impl Send for ActionItemResponseType
impl Sync for ActionItemResponseType
impl Unpin for ActionItemResponseType
impl UnwindSafe for ActionItemResponseType
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