fastedge 0.4.0

FastEdge Rust SDK that helps you to create edge cloud application using WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Shared cache types for cache interfaces.
interface cache-types {
  type payload = list<u8>;

  /// The set of errors that may be returned by cache operations.
  variant error {
    /// The requesting component does not have access to the specified cache
    /// (which may or may not exist).
    access-denied,
    /// An unexpected internal error occurred.
    internal-error,
    /// An implementation-specific error occurred (for example, I/O).
    other(string)
  }
}