pub type CompilationLimitError = LimitError<CompilationResource>;Expand description
A mandatory compilation export ceiling was exceeded or could not be accounted.
Aliased Type§
pub enum CompilationLimitError {
Exceeded {
resource: ResourceKind<3>,
ceiling: u64,
observed_at_least: u64,
},
AccountingOverflow {
resource: ResourceKind<3>,
},
}