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 (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 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<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more