Skip to main content

cloud_sdk_testkit/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4#[cfg(feature = "std")]
5extern crate std;
6
7/// Provider-neutral fixture category planned for the testkit.
8#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
9pub enum FixtureKind {
10    /// Pagination response fixture.
11    Pagination,
12    /// Action polling response fixture.
13    Action,
14    /// Error response fixture.
15    Error,
16}