pub struct ProcessInvoiceArgs {
pub message: Option<String>,
pub minimum_confirmations: u64,
pub selection_strategy: String,
pub method: String,
pub dest: String,
pub max_outputs: usize,
pub input: String,
pub estimate_selection_strategies: bool,
pub ttl_blocks: Option<u64>,
}
Expand description
Arguments for the process_invoice command
Fields
message: Option<String>
minimum_confirmations: u64
selection_strategy: String
method: String
dest: String
max_outputs: usize
input: String
estimate_selection_strategies: bool
ttl_blocks: Option<u64>
Auto Trait Implementations
impl RefUnwindSafe for ProcessInvoiceArgs
impl Send for ProcessInvoiceArgs
impl Sync for ProcessInvoiceArgs
impl Unpin for ProcessInvoiceArgs
impl UnwindSafe for ProcessInvoiceArgs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> SafeBorrow<T> for T where
T: ?Sized,
impl<T> SafeBorrow<T> for T where
T: ?Sized,
fn borrow_replacement(ptr: &T) -> &T
fn borrow_replacement(ptr: &T) -> &T
Given ptr
, which was obtained from a prior call to Self::borrow()
,
return a value with the same nominal lifetime which is guaranteed to
survive mutations to Self
. Read more