pub struct IcCanisterPageRow {
pub canister_id: String,
pub dashboard_id: u64,
pub canister_type: Option<String>,
pub name: String,
pub subnet_id: String,
pub controllers: Vec<IcCanisterPageController>,
pub language: String,
pub module_hash: String,
pub dashboard_updated_at: String,
}Expand description
IcCanisterPageRow
One discovery row from a bounded Dashboard canister page.
Fields§
§canister_id: StringCanonical canister principal.
dashboard_id: u64Dashboard database row identifier.
canister_type: Option<String>Raw optional Dashboard canister classification.
name: StringRaw Dashboard canister name.
subnet_id: StringCanonical Subnet principal recorded by the Dashboard.
controllers: Vec<IcCanisterPageController>Canonically ordered controller entries recorded by the Dashboard.
language: StringRaw Dashboard language label.
module_hash: StringRaw current module hash.
dashboard_updated_at: StringRaw Dashboard row update timestamp.
Trait Implementations§
Source§impl Clone for IcCanisterPageRow
impl Clone for IcCanisterPageRow
Source§fn clone(&self) -> IcCanisterPageRow
fn clone(&self) -> IcCanisterPageRow
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 IcCanisterPageRow
impl Debug for IcCanisterPageRow
impl Eq for IcCanisterPageRow
Source§impl PartialEq for IcCanisterPageRow
impl PartialEq for IcCanisterPageRow
Source§impl Serialize for IcCanisterPageRow
impl Serialize for IcCanisterPageRow
impl StructuralPartialEq for IcCanisterPageRow
Auto Trait Implementations§
impl Freeze for IcCanisterPageRow
impl RefUnwindSafe for IcCanisterPageRow
impl Send for IcCanisterPageRow
impl Sync for IcCanisterPageRow
impl Unpin for IcCanisterPageRow
impl UnsafeUnpin for IcCanisterPageRow
impl UnwindSafe for IcCanisterPageRow
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