[][src]Struct exonum_btc_anchoring::BtcAnchoringService

pub struct BtcAnchoringService;

Bitcoin anchoring service implementation for the Exonum blockchain.

Trait Implementations

impl<'_> BtcAnchoringInterface<ExecutionContext<'_>> for BtcAnchoringService[src]

type Output = Result<(), ExecutionError>

Value output by the interface.

impl Clone for BtcAnchoringService[src]

impl Configure for BtcAnchoringService[src]

type Params = Config

The specific type of parameters passed during the service instance configuration.

impl Copy for BtcAnchoringService[src]

impl Debug for BtcAnchoringService[src]

impl Service for BtcAnchoringService[src]

impl ServiceDispatcher for BtcAnchoringService[src]

impl ServiceFactory for BtcAnchoringService[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<Ctx, T> BtcAnchoringInterface<Ctx> for T where
    T: GenericCall<Ctx>, 
[src]

type Output = <T as GenericCall<Ctx>>::Output

Value output by the interface.

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> Typeable for T where
    T: Any

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