pub struct LnSendPaymentData {Show 13 fields
pub id: String,
pub fee: Option<String>,
pub unit: String,
pub amount: String,
pub preimage: Option<String>,
pub status: String,
pub invoice: String,
pub wallet_id: String,
pub transaction_id: String,
pub created_at: DateTime<Utc>,
pub processed_at: DateTime<Utc>,
pub callback_url: Option<String>,
pub internal_id: Option<String>,
}
Fields§
§id: String
§fee: Option<String>
§unit: String
§amount: String
§preimage: Option<String>
§status: String
§invoice: String
§wallet_id: String
§transaction_id: String
§created_at: DateTime<Utc>
§processed_at: DateTime<Utc>
§callback_url: Option<String>
§internal_id: Option<String>
Trait Implementations§
Source§impl Debug for LnSendPaymentData
impl Debug for LnSendPaymentData
Source§impl<'de> Deserialize<'de> for LnSendPaymentData
impl<'de> Deserialize<'de> for LnSendPaymentData
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 LnSendPaymentData
impl RefUnwindSafe for LnSendPaymentData
impl Send for LnSendPaymentData
impl Sync for LnSendPaymentData
impl Unpin for LnSendPaymentData
impl UnwindSafe for LnSendPaymentData
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