Enum exonum_testkit::ApiKind [] [src]

pub enum ApiKind {
    System,
    Explorer,
    Service(&'static str),
}

Kind of public or private REST API of an Exonum node.

ApiKind allows to use get* and post* methods of TestKitApi more safely.

Variants

api/system endpoints of the built-in Exonum REST API.

api/explorer endpoints of the built-in Exonum REST API.

Endpoints corresponding to a service with the specified string identifier.

Trait Implementations

impl Debug for ApiKind
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ApiKind

impl Sync for ApiKind