pub struct IcReplicaVersionListReport {
pub provenance: IcDashboardReportProvenance,
pub query: IcReplicaVersionListQuery,
pub resolved_max_proposal_index: u64,
pub total_proposals: u64,
pub returned_count: usize,
pub next_offset: Option<u64>,
pub rows: Vec<IcReplicaVersionListRow>,
}Expand description
IcReplicaVersionListReport
One explicitly bounded replica-version page from the official Dashboard API.
Fields§
§provenance: IcDashboardReportProvenanceShared Dashboard provenance, flattened in serialized report JSON.
query: IcReplicaVersionListQueryExact requested page bounds, flattened in report JSON.
resolved_max_proposal_index: u64Proposal-index ceiling selected by the Dashboard for this page series.
total_proposals: u64Number of release records matching the selected proposal-index ceiling.
returned_count: usizeNumber of rows returned in this page.
next_offset: Option<u64>Offset for an explicit next-page request, when more rows remain.
rows: Vec<IcReplicaVersionListRow>Release rows in the Dashboard’s requested descending execution-time order.
Trait Implementations§
Source§impl Clone for IcReplicaVersionListReport
impl Clone for IcReplicaVersionListReport
Source§fn clone(&self) -> IcReplicaVersionListReport
fn clone(&self) -> IcReplicaVersionListReport
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 IcReplicaVersionListReport
impl Debug for IcReplicaVersionListReport
impl Eq for IcReplicaVersionListReport
impl StructuralPartialEq for IcReplicaVersionListReport
Auto Trait Implementations§
impl Freeze for IcReplicaVersionListReport
impl RefUnwindSafe for IcReplicaVersionListReport
impl Send for IcReplicaVersionListReport
impl Sync for IcReplicaVersionListReport
impl Unpin for IcReplicaVersionListReport
impl UnsafeUnpin for IcReplicaVersionListReport
impl UnwindSafe for IcReplicaVersionListReport
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