canic-core 0.100.81

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
//! Module: view::topology
//!
//! Responsibility: expose internal read-only topology projections.
//! Does not own: stable records, endpoint DTOs, or topology decisions.
//! Boundary: storage ops map persisted topology state into these views before workflow use.

use crate::cdk::types::Principal;

///
/// RegisteredCanisterView
///
/// Internal read-only identity and creation metadata for one registered canister.
///

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct RegisteredCanisterView {
    pub pid: Principal,
    pub created_at: u64,
}