[][src]Struct splinter::service::scabbard::client::ScabbardClient

pub struct ScabbardClient { /* fields omitted */ }

A client that can be used to submit transactions to scabbard services on a Splinter node.

Methods

impl ScabbardClient[src]

pub fn new(url: &str) -> Self[src]

Create a new ScabbardClient with the given base url. The url should be the endpoint of the Splinter node; it should not include the endpoint of the scabbard service itself.

pub fn submit(
    &self,
    service_id: &ServiceId,
    batches: Vec<Batch>,
    wait: Option<u64>
) -> Result<(), Error>
[src]

Submit the given batches to the scabbard service specified by the circuit and service IDs. Optionally wait the given number of seconds for batches to commit.

pub fn get_state_at_address(
    &self,
    service_id: &ServiceId,
    address: &str
) -> Result<Option<Vec<u8>>, Error>
[src]

pub fn get_state_with_prefix(
    &self,
    service_id: &ServiceId,
    prefix: Option<&str>
) -> Result<Vec<StateEntry>, Error>
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> IntoSql for T

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,