pub struct LndSendPaymentSyncRes {
pub payment_error: Option<String>,
pub payment_preimage: Option<String>,
pub payment_route: Option<Route>,
pub payment_hash: Option<String>,
}
Fields§
§payment_error: Option<String>
§payment_preimage: Option<String>
§payment_route: Option<Route>
§payment_hash: Option<String>
Implementations§
Source§impl LndSendPaymentSyncRes
impl LndSendPaymentSyncRes
pub fn to_cluster(self, pubkey: String) -> ClusterPayPaymentRequestRes
Trait Implementations§
Source§impl Debug for LndSendPaymentSyncRes
impl Debug for LndSendPaymentSyncRes
Source§impl<'de> Deserialize<'de> for LndSendPaymentSyncRes
impl<'de> Deserialize<'de> for LndSendPaymentSyncRes
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 LndSendPaymentSyncRes
impl RefUnwindSafe for LndSendPaymentSyncRes
impl Send for LndSendPaymentSyncRes
impl Sync for LndSendPaymentSyncRes
impl Unpin for LndSendPaymentSyncRes
impl UnwindSafe for LndSendPaymentSyncRes
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