pub struct IcrcAccountTransactionRefreshAttemptStatus {
pub status: String,
pub started_at: String,
pub updated_at: String,
pub index_canister_id: Option<String>,
pub page_size: u32,
pub pages_fetched: u32,
pub rows_fetched: usize,
pub last_cursor: Option<String>,
pub last_error: Option<String>,
}Expand description
IcrcAccountTransactionRefreshAttemptStatus
Serializable status of the latest complete-history refresh attempt.
Fields§
§status: StringStable attempt lifecycle status.
started_at: StringAttempt start timestamp.
updated_at: StringLast attempt update timestamp.
index_canister_id: Option<String>Explicit or resolved index canister recorded by the attempt.
page_size: u32Maximum transactions requested per source page.
pages_fetched: u32Successfully collected pages.
rows_fetched: usizeRows retained before the latest update.
last_cursor: Option<String>Last exclusive cursor when present.
last_error: Option<String>Final failure text when the attempt failed.
Trait Implementations§
Source§impl Clone for IcrcAccountTransactionRefreshAttemptStatus
impl Clone for IcrcAccountTransactionRefreshAttemptStatus
Source§fn clone(&self) -> IcrcAccountTransactionRefreshAttemptStatus
fn clone(&self) -> IcrcAccountTransactionRefreshAttemptStatus
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 IcrcAccountTransactionRefreshAttemptStatus
impl StructuralPartialEq for IcrcAccountTransactionRefreshAttemptStatus
Auto Trait Implementations§
impl Freeze for IcrcAccountTransactionRefreshAttemptStatus
impl RefUnwindSafe for IcrcAccountTransactionRefreshAttemptStatus
impl Send for IcrcAccountTransactionRefreshAttemptStatus
impl Sync for IcrcAccountTransactionRefreshAttemptStatus
impl Unpin for IcrcAccountTransactionRefreshAttemptStatus
impl UnsafeUnpin for IcrcAccountTransactionRefreshAttemptStatus
impl UnwindSafe for IcrcAccountTransactionRefreshAttemptStatus
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