pub enum SubmitTransactionResponse {
Registered,
Failed(String),
}
Expand description
The result of submitting a transaction to the rollup
Variants§
Trait Implementations§
source§impl Clone for SubmitTransactionResponse
impl Clone for SubmitTransactionResponse
source§fn clone(&self) -> SubmitTransactionResponse
fn clone(&self) -> SubmitTransactionResponse
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 SubmitTransactionResponse
impl Debug for SubmitTransactionResponse
source§impl<'de> Deserialize<'de> for SubmitTransactionResponse
impl<'de> Deserialize<'de> for SubmitTransactionResponse
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
source§impl PartialEq<SubmitTransactionResponse> for SubmitTransactionResponse
impl PartialEq<SubmitTransactionResponse> for SubmitTransactionResponse
source§fn eq(&self, other: &SubmitTransactionResponse) -> bool
fn eq(&self, other: &SubmitTransactionResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SubmitTransactionResponse
Auto Trait Implementations§
impl RefUnwindSafe for SubmitTransactionResponse
impl Send for SubmitTransactionResponse
impl Sync for SubmitTransactionResponse
impl Unpin for SubmitTransactionResponse
impl UnwindSafe for SubmitTransactionResponse
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