pub struct FeedbackContextReceipt {
pub final_amount_wei: Option<AtomicAmount>,
pub network: Option<ChainNetwork>,
pub tx_hash: Option<String>,
}Expand description
FeedbackContextReceipt
JSON schema
{
"type": "object",
"properties": {
"finalAmountWei": {
"$ref": "#/components/schemas/AtomicAmount"
},
"network": {
"$ref": "#/components/schemas/ChainNetwork"
},
"txHash": {
"type": "string"
}
},
"additionalProperties": false
}Fields§
§final_amount_wei: Option<AtomicAmount>§network: Option<ChainNetwork>§tx_hash: Option<String>Implementations§
Source§impl FeedbackContextReceipt
impl FeedbackContextReceipt
pub fn builder() -> FeedbackContextReceipt
Trait Implementations§
Source§impl Clone for FeedbackContextReceipt
impl Clone for FeedbackContextReceipt
Source§fn clone(&self) -> FeedbackContextReceipt
fn clone(&self) -> FeedbackContextReceipt
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 Debug for FeedbackContextReceipt
impl Debug for FeedbackContextReceipt
Source§impl Default for FeedbackContextReceipt
impl Default for FeedbackContextReceipt
Source§impl<'de> Deserialize<'de> for FeedbackContextReceipt
impl<'de> Deserialize<'de> for FeedbackContextReceipt
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<FeedbackContextReceipt> for FeedbackContextReceipt
impl From<FeedbackContextReceipt> for FeedbackContextReceipt
Source§fn from(value: FeedbackContextReceipt) -> Self
fn from(value: FeedbackContextReceipt) -> Self
Converts to this type from the input type.
Source§impl Serialize for FeedbackContextReceipt
impl Serialize for FeedbackContextReceipt
Source§impl TryFrom<FeedbackContextReceipt> for FeedbackContextReceipt
impl TryFrom<FeedbackContextReceipt> for FeedbackContextReceipt
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: FeedbackContextReceipt) -> Result<Self, ConversionError>
fn try_from(value: FeedbackContextReceipt) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for FeedbackContextReceipt
impl RefUnwindSafe for FeedbackContextReceipt
impl Send for FeedbackContextReceipt
impl Sync for FeedbackContextReceipt
impl Unpin for FeedbackContextReceipt
impl UnsafeUnpin for FeedbackContextReceipt
impl UnwindSafe for FeedbackContextReceipt
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