canic-core 0.27.1

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::dto::{
    env::EnvBootstrapArgs,
    prelude::*,
    topology::{AppIndexArgs, SubnetIndexArgs},
};

//
// CanisterInitPayload
//

#[derive(CandidType, Debug, Deserialize)]
pub struct CanisterInitPayload {
    pub env: EnvBootstrapArgs,
    pub app_index: AppIndexArgs,
    pub subnet_index: SubnetIndexArgs,
}