pub enum CallMessage {
Register {
da_address: Vec<u8>,
},
Exit {
da_address: Vec<u8>,
},
}Expand description
This enumeration represents the available call messages for interacting with
the sov-sequencer-registry module.
Variants§
Register
Add a new sequencer to the sequencer registry.
Exit
Remove a sequencer from the sequencer registry.
Trait Implementations§
source§impl BorshDeserialize for CallMessagewhere
Vec<u8>: BorshDeserialize,
impl BorshDeserialize for CallMessagewhere 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
Vec<u8>: BorshSerialize,
impl BorshSerialize for CallMessagewhere Vec<u8>: BorshSerialize,
source§impl Clone for CallMessage
impl Clone for CallMessage
source§fn clone(&self) -> CallMessage
fn clone(&self) -> CallMessage
Returns a copy 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 CallMessage
impl Debug for CallMessage
source§impl EnumExt for CallMessagewhere
Vec<u8>: BorshDeserialize,
impl EnumExt for CallMessagewhere 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