pub struct ReceiveOptions {
pub amount_split_target: SplitTarget,
pub p2pk_signing_keys: Vec<SecretKey>,
pub preimages: Vec<String>,
pub metadata: HashMap<String, String>,
}Expand description
Receive options
Fields§
§amount_split_target: SplitTargetAmount split target
p2pk_signing_keys: Vec<SecretKey>P2PK signing keys
preimages: Vec<String>Preimages
metadata: HashMap<String, String>Metadata
Trait Implementations§
Source§impl Clone for ReceiveOptions
impl Clone for ReceiveOptions
Source§fn clone(&self) -> ReceiveOptions
fn clone(&self) -> ReceiveOptions
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 ReceiveOptions
impl Debug for ReceiveOptions
Source§impl Default for ReceiveOptions
impl Default for ReceiveOptions
Source§fn default() -> ReceiveOptions
fn default() -> ReceiveOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReceiveOptions
impl RefUnwindSafe for ReceiveOptions
impl Send for ReceiveOptions
impl Sync for ReceiveOptions
impl Unpin for ReceiveOptions
impl UnsafeUnpin for ReceiveOptions
impl UnwindSafe for ReceiveOptions
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