Struct sc_light::backend::Backend[][src]

pub struct Backend<S, H: Hasher> { /* fields omitted */ }

Light client backend.

Implementations

impl<S, H: Hasher> Backend<S, H>[src]

pub fn new(blockchain: Arc<Blockchain<S>>) -> Self[src]

Create new light backend.

pub fn blockchain(&self) -> &Arc<Blockchain<S>>[src]

Get shared blockchain reference.

Trait Implementations

impl<S: AuxStore, H: Hasher> AuxStore for Backend<S, H>[src]

impl<S, Block> Backend<Block> for Backend<S, HashFor<Block>> where
    Block: BlockT,
    S: BlockchainStorage<Block>,
    Block::Hash: Ord
[src]

type BlockImportOperation = ImportOperation<Block, S>

Associated block insertion operation type.

type Blockchain = Blockchain<S>

Associated blockchain backend type.

type State = GenesisOrUnavailableState<HashFor<Block>>

Associated state backend type.

type OffchainStorage = InMemOffchainStorage

Offchain workers local storage.

impl<S, Block> RemoteBackend<Block> for Backend<S, HashFor<Block>> where
    Block: BlockT,
    S: BlockchainStorage<Block> + 'static,
    Block::Hash: Ord
[src]

Auto Trait Implementations

impl<S, H> !RefUnwindSafe for Backend<S, H>[src]

impl<S, H> Send for Backend<S, H> where
    S: Send + Sync
[src]

impl<S, H> Sync for Backend<S, H> where
    S: Send + Sync
[src]

impl<S, H> Unpin for Backend<S, H> where
    H: Unpin,
    <H as Hasher>::Out: Unpin
[src]

impl<S, H> UnwindSafe for Backend<S, H> where
    H: UnwindSafe,
    S: RefUnwindSafe,
    <H as Hasher>::Out: UnwindSafe
[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> 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>,