pub struct PaymentRequestLimits {
pub min_amount: u64,
pub max_amount: u64,
}Expand description
Optional limits for filtering incoming payment requests.
Fields§
§min_amount: u64§max_amount: u64Trait Implementations§
Source§impl Clone for PaymentRequestLimits
impl Clone for PaymentRequestLimits
Source§fn clone(&self) -> PaymentRequestLimits
fn clone(&self) -> PaymentRequestLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaymentRequestLimits
impl Debug for PaymentRequestLimits
Auto Trait Implementations§
impl Freeze for PaymentRequestLimits
impl RefUnwindSafe for PaymentRequestLimits
impl Send for PaymentRequestLimits
impl Sync for PaymentRequestLimits
impl Unpin for PaymentRequestLimits
impl UnsafeUnpin for PaymentRequestLimits
impl UnwindSafe for PaymentRequestLimits
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