[][src]Struct exonum_testkit::TestKitApi

pub struct TestKitApi { /* fields omitted */ }

API encapsulation for the testkit. Allows to execute and synchronously retrieve results for REST-ful endpoints of services.

Methods

impl TestKitApi[src]

pub fn new(testkit: &TestKit) -> Self[src]

Creates a new instance of API.

pub fn send<T>(&self, transaction: T) where
    T: Into<Signed<RawTransaction>>, 
[src]

Sends a transaction to the node via ApiSender.

pub fn public(
    &self,
    kind: impl Display
) -> RequestBuilder
[src]

Creates a requests builder for the public API scope.

pub fn private(
    &self,
    kind: impl Display
) -> RequestBuilder
[src]

Creates a requests builder for the private API scope.

Trait Implementations

impl Debug for TestKitApi[src]

Auto Trait Implementations

impl !Send for TestKitApi

impl !Sync for TestKitApi

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self