pub struct IcrcAccountTransactionListRequest {
pub cache: IcrcAccountTransactionCacheRequest,
pub limit: u32,
pub sort: IcrcAccountTransactionSort,
}Expand description
IcrcAccountTransactionListRequest
Cache-only account-history list view.
Fields§
§cache: IcrcAccountTransactionCacheRequestStable cache identity.
limit: u32Maximum cached rows returned by this view.
sort: IcrcAccountTransactionSortRequested cached-row ordering.
Implementations§
Source§impl IcrcAccountTransactionListRequest
impl IcrcAccountTransactionListRequest
Sourcepub const fn new(cache: IcrcAccountTransactionCacheRequest, limit: u32) -> Self
pub const fn new(cache: IcrcAccountTransactionCacheRequest, limit: u32) -> Self
Constructs a newest-first cached list view.
Sourcepub const fn with_sort(self, sort: IcrcAccountTransactionSort) -> Self
pub const fn with_sort(self, sort: IcrcAccountTransactionSort) -> Self
Selects cached-row ordering.
Trait Implementations§
Source§impl Clone for IcrcAccountTransactionListRequest
impl Clone for IcrcAccountTransactionListRequest
Source§fn clone(&self) -> IcrcAccountTransactionListRequest
fn clone(&self) -> IcrcAccountTransactionListRequest
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 moreimpl Eq for IcrcAccountTransactionListRequest
impl StructuralPartialEq for IcrcAccountTransactionListRequest
Auto Trait Implementations§
impl Freeze for IcrcAccountTransactionListRequest
impl RefUnwindSafe for IcrcAccountTransactionListRequest
impl Send for IcrcAccountTransactionListRequest
impl Sync for IcrcAccountTransactionListRequest
impl Unpin for IcrcAccountTransactionListRequest
impl UnsafeUnpin for IcrcAccountTransactionListRequest
impl UnwindSafe for IcrcAccountTransactionListRequest
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