#[non_exhaustive]pub enum SignableMessageType {
DelegateAction,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DelegateAction
A delegate action, intended for a relayer to included it in an action list of a transaction.
Trait Implementations§
Source§impl Clone for SignableMessageType
impl Clone for SignableMessageType
Source§fn clone(&self) -> SignableMessageType
fn clone(&self) -> SignableMessageType
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 SignableMessageType
impl Debug for SignableMessageType
Source§impl From<SignableMessageType> for MessageDiscriminant
impl From<SignableMessageType> for MessageDiscriminant
Source§fn from(ty: SignableMessageType) -> Self
fn from(ty: SignableMessageType) -> Self
Converts to this type from the input type.
Source§impl Hash for SignableMessageType
impl Hash for SignableMessageType
Source§impl Ord for SignableMessageType
impl Ord for SignableMessageType
Source§fn cmp(&self, other: &SignableMessageType) -> Ordering
fn cmp(&self, other: &SignableMessageType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SignableMessageType
impl PartialEq for SignableMessageType
Source§impl PartialOrd for SignableMessageType
impl PartialOrd for SignableMessageType
impl Copy for SignableMessageType
impl Eq for SignableMessageType
impl StructuralPartialEq for SignableMessageType
Auto Trait Implementations§
impl Freeze for SignableMessageType
impl RefUnwindSafe for SignableMessageType
impl Send for SignableMessageType
impl Sync for SignableMessageType
impl Unpin for SignableMessageType
impl UnwindSafe for SignableMessageType
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