pub enum LnUrlResponse {
LnUrlPayResponse(PayResponse),
LnUrlWithdrawResponse(WithdrawalResponse),
LnUrlChannelResponse(ChannelResponse),
}
Variants§
LnUrlPayResponse(PayResponse)
LnUrlWithdrawResponse(WithdrawalResponse)
LnUrlChannelResponse(ChannelResponse)
Trait Implementations§
Source§impl Clone for LnUrlResponse
impl Clone for LnUrlResponse
Source§fn clone(&self) -> LnUrlResponse
fn clone(&self) -> LnUrlResponse
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 LnUrlResponse
impl Debug for LnUrlResponse
Source§impl<'de> Deserialize<'de> for LnUrlResponse
impl<'de> Deserialize<'de> for LnUrlResponse
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 PartialEq for LnUrlResponse
impl PartialEq for LnUrlResponse
Source§impl Serialize for LnUrlResponse
impl Serialize for LnUrlResponse
impl StructuralPartialEq for LnUrlResponse
Auto Trait Implementations§
impl Freeze for LnUrlResponse
impl RefUnwindSafe for LnUrlResponse
impl Send for LnUrlResponse
impl Sync for LnUrlResponse
impl Unpin for LnUrlResponse
impl UnwindSafe for LnUrlResponse
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