pub struct PayResponse {
pub tag: String,
pub callback: String,
pub metadata: String,
pub min_sendable: u64,
pub max_sendable: u64,
}Expand description
LNURL-pay response (LUD-06)
Fields§
§tag: String§callback: String§metadata: String§min_sendable: u64§max_sendable: u64Trait Implementations§
Source§impl Clone for PayResponse
impl Clone for PayResponse
Source§fn clone(&self) -> PayResponse
fn clone(&self) -> PayResponse
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 PayResponse
impl Debug for PayResponse
Source§impl<'de> Deserialize<'de> for PayResponse
impl<'de> Deserialize<'de> for PayResponse
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 PayResponse
impl RefUnwindSafe for PayResponse
impl Send for PayResponse
impl Sync for PayResponse
impl Unpin for PayResponse
impl UnwindSafe for PayResponse
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