pub enum PaymentMethod {
Ark(String),
Bitcoin(String),
OutputScript(String),
Invoice(String),
Offer(String),
LightningAddress(String),
Custom(String),
}Expand description
Provides a typed mechanism for describing the recipient in a MovementDestination. This is a bark-json wrapper that serializes all payment methods as strings for utoipa compatibility.
Variants§
Ark(String)
An ark::Address format for bark.
Bitcoin(String)
An onchain bitcoin::Address.
OutputScript(String)
An onchain bitcoin::ScriptBuf output, typically used for non-address formats like OP_RETURN.
Invoice(String)
Any supported form of lightning invoice, e.g., BOLT11 and BOLT12.
Offer(String)
A reusable BOLT12 offer for making lightning payments.
LightningAddress(String)
A variant using an email-like lightning address format.
Custom(String)
An alternative payment method that isn’t native to bark.
Trait Implementations§
Source§impl Clone for PaymentMethod
impl Clone for PaymentMethod
Source§fn clone(&self) -> PaymentMethod
fn clone(&self) -> PaymentMethod
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 PaymentMethod
impl Debug for PaymentMethod
Source§impl<'de> Deserialize<'de> for PaymentMethod
impl<'de> Deserialize<'de> for PaymentMethod
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 From<PaymentMethod> for PaymentMethod
impl From<PaymentMethod> for PaymentMethod
Source§fn from(p: PaymentMethod) -> Self
fn from(p: PaymentMethod) -> Self
Converts to this type from the input type.
Source§impl Hash for PaymentMethod
impl Hash for PaymentMethod
Source§impl PartialEq for PaymentMethod
impl PartialEq for PaymentMethod
Source§impl Serialize for PaymentMethod
impl Serialize for PaymentMethod
Source§impl TryFrom<PaymentMethod> for PaymentMethod
impl TryFrom<PaymentMethod> for PaymentMethod
impl Eq for PaymentMethod
impl StructuralPartialEq for PaymentMethod
Auto Trait Implementations§
impl Freeze for PaymentMethod
impl RefUnwindSafe for PaymentMethod
impl Send for PaymentMethod
impl Sync for PaymentMethod
impl Unpin for PaymentMethod
impl UnsafeUnpin for PaymentMethod
impl UnwindSafe for PaymentMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request