pub struct RegulatoryReceiptQueryResult {
pub matching_receipts: u64,
pub receipts: Vec<ChioReceipt>,
}Expand description
Raw query result handed back to the handler.
Fields§
§matching_receipts: u64Total receipts matching the filter (pre-limit).
receipts: Vec<ChioReceipt>Receipts (length <= limit_or_default).
Trait Implementations§
Source§impl Clone for RegulatoryReceiptQueryResult
impl Clone for RegulatoryReceiptQueryResult
Source§fn clone(&self) -> RegulatoryReceiptQueryResult
fn clone(&self) -> RegulatoryReceiptQueryResult
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 RegulatoryReceiptQueryResult
impl Debug for RegulatoryReceiptQueryResult
Source§impl Default for RegulatoryReceiptQueryResult
impl Default for RegulatoryReceiptQueryResult
Source§fn default() -> RegulatoryReceiptQueryResult
fn default() -> RegulatoryReceiptQueryResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RegulatoryReceiptQueryResult
impl RefUnwindSafe for RegulatoryReceiptQueryResult
impl Send for RegulatoryReceiptQueryResult
impl Sync for RegulatoryReceiptQueryResult
impl Unpin for RegulatoryReceiptQueryResult
impl UnsafeUnpin for RegulatoryReceiptQueryResult
impl UnwindSafe for RegulatoryReceiptQueryResult
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