signet-sim 0.5.0

Signet simulation utilities.
Documentation
1
2
3
4
5
6
7
/// Possible errors that can occur when using the cache.
#[derive(Debug, Clone, Copy, thiserror::Error)]
pub enum CacheError {
    /// The bundle does not have a replacement UUID, which is required for caching.
    #[error("bundle has no replacement UUID")]
    BundleWithoutReplacementUuid,
}