pub struct UserOperationReceipt {
pub user_operation_hash: String,
pub transaction_hash: String,
pub success: bool,
pub raw: Value,
}Expand description
Receipt for a submitted UserOperation.
Fields§
§user_operation_hash: String§transaction_hash: String§success: bool§raw: ValueTrait Implementations§
Source§impl Clone for UserOperationReceipt
impl Clone for UserOperationReceipt
Source§fn clone(&self) -> UserOperationReceipt
fn clone(&self) -> UserOperationReceipt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UserOperationReceipt
impl RefUnwindSafe for UserOperationReceipt
impl Send for UserOperationReceipt
impl Sync for UserOperationReceipt
impl Unpin for UserOperationReceipt
impl UnsafeUnpin for UserOperationReceipt
impl UnwindSafe for UserOperationReceipt
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