pub struct EmailPaymentReqest {
pub email: String,
pub amount: String,
pub comment: String,
}
Expand description
Send instant Bitcoin payments to any email
Fields§
§email: String
Recipient email to send payment to.
amount: String
Total amount of satoshis to send (in millisatoshis).
comment: String
comment to be sent with the payment (max 150 characters).
Trait Implementations§
Source§impl Debug for EmailPaymentReqest
impl Debug for EmailPaymentReqest
Source§impl<'de> Deserialize<'de> for EmailPaymentReqest
impl<'de> Deserialize<'de> for EmailPaymentReqest
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
Auto Trait Implementations§
impl Freeze for EmailPaymentReqest
impl RefUnwindSafe for EmailPaymentReqest
impl Send for EmailPaymentReqest
impl Sync for EmailPaymentReqest
impl Unpin for EmailPaymentReqest
impl UnwindSafe for EmailPaymentReqest
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