Struct substrate_frame_rpc_system::FullSystem[][src]

pub struct FullSystem<P: TransactionPool, C, B> { /* fields omitted */ }

An implementation of System-specific RPC methods on full client.

Implementations

impl<P: TransactionPool, C, B> FullSystem<P, C, B>[src]

pub fn new(client: Arc<C>, pool: Arc<P>, deny_unsafe: DenyUnsafe) -> Self[src]

Create new FullSystem given client and transaction pool.

Trait Implementations

impl<P, C, Block, AccountId, Index> SystemApi<<Block as Block>::Hash, AccountId, Index> for FullSystem<P, C, Block> where
    C: ProvideRuntimeApi<Block>,
    C: HeaderBackend<Block>,
    C: Send + Sync + 'static,
    C::Api: AccountNonceApi<Block, AccountId, Index>,
    C::Api: BlockBuilder<Block>,
    P: TransactionPool + 'static,
    Block: Block,
    AccountId: Clone + Display + Codec,
    Index: Clone + Display + Codec + Send + AtLeast32Bit + 'static, 
[src]

Auto Trait Implementations

impl<P, C, B> RefUnwindSafe for FullSystem<P, C, B> where
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    P: RefUnwindSafe
[src]

impl<P, C, B> Send for FullSystem<P, C, B> where
    B: Send,
    C: Send + Sync
[src]

impl<P, C, B> Sync for FullSystem<P, C, B> where
    B: Sync,
    C: Send + Sync
[src]

impl<P, C, B> Unpin for FullSystem<P, C, B> where
    B: Unpin
[src]

impl<P, C, B> UnwindSafe for FullSystem<P, C, B> where
    B: UnwindSafe,
    C: RefUnwindSafe,
    P: RefUnwindSafe
[src]

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

impl<T> Instrument for T[src]

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

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

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

Get a reference to the inner from the outer.

pub 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
    T: Bounded,
    S: TryInto<T>, 

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