1 2 3 4 5 6 7 8 9 10 11
use crate::{cdk::types::BoundedString64, ids::CanisterRole}; /// /// ScalingWorkerPlanEntry /// #[derive(Clone, Debug)] pub struct ScalingWorkerPlanEntry { pub pool: BoundedString64, pub canister_role: CanisterRole, }