[][src]Struct pallet_contracts_rpc::Contracts

pub struct Contracts<C, B> { /* fields omitted */ }

An implementation of contract specific RPC methods.

Implementations

impl<C, B> Contracts<C, B>[src]

pub fn new(client: Arc<C>) -> Self[src]

Create new Contracts with the given reference to the client.

Trait Implementations

impl<C, Block, AccountId, Balance> ContractsApi<<Block as Block>::Hash, <<Block as Block>::Header as Header>::Number, AccountId, Balance> for Contracts<C, Block> where
    Block: BlockT,
    C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
    C::Api: ContractsRuntimeApi<Block, AccountId, Balance, <<Block as BlockT>::Header as HeaderT>::Number>,
    AccountId: Codec,
    Balance: Codec
[src]

Auto Trait Implementations

impl<C, B> RefUnwindSafe for Contracts<C, B> where
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<C, B> Send for Contracts<C, B> where
    B: Send,
    C: Send + Sync

impl<C, B> Sync for Contracts<C, B> where
    B: Sync,
    C: Send + Sync

impl<C, B> Unpin for Contracts<C, B> where
    B: Unpin

impl<C, B> UnwindSafe for Contracts<C, B> where
    B: UnwindSafe,
    C: RefUnwindSafe

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> CheckedConversion for T[src]

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

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded

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