pub struct IcReplicaVersionListRow {
pub replica_version_id: String,
pub proposal_id: u64,
pub executed_timestamp_seconds: u64,
pub status: IcReplicaVersionStatus,
pub title: String,
pub url: String,
pub subnet_count: usize,
pub subnets: Vec<IcReplicaVersionSubnetRollout>,
}Expand description
IcReplicaVersionListRow
One release-election row from a bounded official Dashboard page.
Fields§
§replica_version_id: StringLowercase hexadecimal replica-version identifier.
proposal_id: u64NNS proposal that elected this version.
executed_timestamp_seconds: u64Election proposal execution time, or zero before execution.
status: IcReplicaVersionStatusRaw Dashboard proposal lifecycle status.
title: StringRaw proposal title.
url: StringRaw proposal discussion URL.
subnet_count: usizeNumber of Dashboard-recorded Subnet assignments.
subnets: Vec<IcReplicaVersionSubnetRollout>Dashboard-recorded Subnet assignments in execution order.
Trait Implementations§
Source§impl Clone for IcReplicaVersionListRow
impl Clone for IcReplicaVersionListRow
Source§fn clone(&self) -> IcReplicaVersionListRow
fn clone(&self) -> IcReplicaVersionListRow
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 IcReplicaVersionListRow
impl Debug for IcReplicaVersionListRow
impl Eq for IcReplicaVersionListRow
Source§impl PartialEq for IcReplicaVersionListRow
impl PartialEq for IcReplicaVersionListRow
Source§impl Serialize for IcReplicaVersionListRow
impl Serialize for IcReplicaVersionListRow
impl StructuralPartialEq for IcReplicaVersionListRow
Auto Trait Implementations§
impl Freeze for IcReplicaVersionListRow
impl RefUnwindSafe for IcReplicaVersionListRow
impl Send for IcReplicaVersionListRow
impl Sync for IcReplicaVersionListRow
impl Unpin for IcReplicaVersionListRow
impl UnsafeUnpin for IcReplicaVersionListRow
impl UnwindSafe for IcReplicaVersionListRow
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