pub struct ListActionsArgs {
pub labels: Vec<LabelStringUnder300Bytes>,
pub label_query_mode: Option<QueryMode>,
pub include_labels: BooleanDefaultFalse,
pub include_inputs: BooleanDefaultFalse,
pub include_input_source_locking_scripts: BooleanDefaultFalse,
pub include_input_unlocking_scripts: BooleanDefaultFalse,
pub include_outputs: BooleanDefaultFalse,
pub include_output_locking_scripts: BooleanDefaultFalse,
pub limit: PositiveIntegerDefault10Max10000,
pub offset: Option<PositiveIntegerOrZero>,
pub seek_permission: BooleanDefaultTrue,
}Expand description
Filtering and pagination options for listing wallet transactions.
Fields§
§labels: Vec<LabelStringUnder300Bytes>§label_query_mode: Option<QueryMode>§include_labels: BooleanDefaultFalse§include_inputs: BooleanDefaultFalse§include_input_source_locking_scripts: BooleanDefaultFalse§include_input_unlocking_scripts: BooleanDefaultFalse§include_outputs: BooleanDefaultFalse§include_output_locking_scripts: BooleanDefaultFalse§limit: PositiveIntegerDefault10Max10000§offset: Option<PositiveIntegerOrZero>§seek_permission: BooleanDefaultTrueTrait Implementations§
Source§impl Clone for ListActionsArgs
impl Clone for ListActionsArgs
Source§fn clone(&self) -> ListActionsArgs
fn clone(&self) -> ListActionsArgs
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 moreAuto Trait Implementations§
impl Freeze for ListActionsArgs
impl RefUnwindSafe for ListActionsArgs
impl Send for ListActionsArgs
impl Sync for ListActionsArgs
impl Unpin for ListActionsArgs
impl UnsafeUnpin for ListActionsArgs
impl UnwindSafe for ListActionsArgs
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