pub struct PreparedPaymasterCompatibility {
pub dispatch_id: String,
pub chain_id: String,
pub entry_point: String,
pub paymaster_address: String,
pub user_operation_hash: String,
pub sponsor_gas_limit: u64,
pub estimated_reimbursement_minor_units: u64,
pub allowed: bool,
pub rejection_reason: Option<String>,
}Fields§
§dispatch_id: String§chain_id: String§entry_point: String§paymaster_address: String§user_operation_hash: String§sponsor_gas_limit: u64§estimated_reimbursement_minor_units: u64§allowed: bool§rejection_reason: Option<String>Trait Implementations§
Source§impl Clone for PreparedPaymasterCompatibility
impl Clone for PreparedPaymasterCompatibility
Source§fn clone(&self) -> PreparedPaymasterCompatibility
fn clone(&self) -> PreparedPaymasterCompatibility
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 moreSource§impl<'de> Deserialize<'de> for PreparedPaymasterCompatibility
impl<'de> Deserialize<'de> for PreparedPaymasterCompatibility
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
impl Eq for PreparedPaymasterCompatibility
impl StructuralPartialEq for PreparedPaymasterCompatibility
Auto Trait Implementations§
impl Freeze for PreparedPaymasterCompatibility
impl RefUnwindSafe for PreparedPaymasterCompatibility
impl Send for PreparedPaymasterCompatibility
impl Sync for PreparedPaymasterCompatibility
impl Unpin for PreparedPaymasterCompatibility
impl UnsafeUnpin for PreparedPaymasterCompatibility
impl UnwindSafe for PreparedPaymasterCompatibility
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