ic-asset 0.29.0

Library for storing files in an asset canister.
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

/// Errors related to downgrading CommitBatchArguments for use with a v0 asset canister.
#[derive(Error, Debug)]
pub enum DowngradeCommitBatchArgumentsV1ToV0Error {
    /// Asset canister v0 does not support SetAssetProperties.
    #[error("SetAssetProperties is not supported")]
    V0SetAssetPropertiesNotSupported,
}