pub struct RegulatoryReceiptsQuery {
pub agent: Option<String>,
pub after: Option<u64>,
pub before: Option<u64>,
pub limit: Option<usize>,
}Expand description
Query parameters for GET /regulatory/receipts.
Fields§
§agent: Option<String>Filter by agent subject (hex-encoded Ed25519 public key).
after: Option<u64>Include only receipts with timestamp >= after.
before: Option<u64>Include only receipts with timestamp <= before.
limit: Option<usize>Maximum rows to return (capped at
MAX_REGULATORY_EXPORT_LIMIT).
Implementations§
Source§impl RegulatoryReceiptsQuery
impl RegulatoryReceiptsQuery
pub fn limit_or_default(&self) -> usize
Trait Implementations§
Source§impl Clone for RegulatoryReceiptsQuery
impl Clone for RegulatoryReceiptsQuery
Source§fn clone(&self) -> RegulatoryReceiptsQuery
fn clone(&self) -> RegulatoryReceiptsQuery
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 RegulatoryReceiptsQuery
impl Debug for RegulatoryReceiptsQuery
Source§impl Default for RegulatoryReceiptsQuery
impl Default for RegulatoryReceiptsQuery
Source§fn default() -> RegulatoryReceiptsQuery
fn default() -> RegulatoryReceiptsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegulatoryReceiptsQuery
impl<'de> Deserialize<'de> for RegulatoryReceiptsQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RegulatoryReceiptsQuery
impl PartialEq for RegulatoryReceiptsQuery
Source§impl Serialize for RegulatoryReceiptsQuery
impl Serialize for RegulatoryReceiptsQuery
impl Eq for RegulatoryReceiptsQuery
impl StructuralPartialEq for RegulatoryReceiptsQuery
Auto Trait Implementations§
impl Freeze for RegulatoryReceiptsQuery
impl RefUnwindSafe for RegulatoryReceiptsQuery
impl Send for RegulatoryReceiptsQuery
impl Sync for RegulatoryReceiptsQuery
impl Unpin for RegulatoryReceiptsQuery
impl UnsafeUnpin for RegulatoryReceiptsQuery
impl UnwindSafe for RegulatoryReceiptsQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.