pub struct SettleResponse(pub Value);Expand description
Response from a payment settlement request.
Contains the settlement result as JSON, typically including the transaction hash if settlement was successful.
Tuple Fields§
§0: ValueTrait Implementations§
Source§impl Clone for SettleResponse
impl Clone for SettleResponse
Source§fn clone(&self) -> SettleResponse
fn clone(&self) -> SettleResponse
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 SettleResponse
impl Debug for SettleResponse
Source§impl<'de> Deserialize<'de> for SettleResponse
impl<'de> Deserialize<'de> for SettleResponse
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 From<SettleResponse> for SettleResponse
impl From<SettleResponse> for SettleResponse
Source§fn from(val: SettleResponse) -> Self
fn from(val: SettleResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SettleResponse
impl RefUnwindSafe for SettleResponse
impl Send for SettleResponse
impl Sync for SettleResponse
impl Unpin for SettleResponse
impl UnwindSafe for SettleResponse
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