Struct ckb_types::core::cell::OverlayCellProvider[][src]

pub struct OverlayCellProvider<'a, A, B> { /* fields omitted */ }

TODO(doc): @quake

Implementations

impl<'a, A, B> OverlayCellProvider<'a, A, B> where
    A: CellProvider,
    B: CellProvider
[src]

pub fn new(overlay: &'a A, cell_provider: &'a B) -> Self[src]

TODO(doc): @quake

Trait Implementations

impl<'a, A, B> CellProvider for OverlayCellProvider<'a, A, B> where
    A: CellProvider,
    B: CellProvider
[src]

Auto Trait Implementations

impl<'a, A, B> RefUnwindSafe for OverlayCellProvider<'a, A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<'a, A, B> Send for OverlayCellProvider<'a, A, B> where
    A: Sync,
    B: Sync

impl<'a, A, B> Sync for OverlayCellProvider<'a, A, B> where
    A: Sync,
    B: Sync

impl<'a, A, B> Unpin for OverlayCellProvider<'a, A, B>

impl<'a, A, B> UnwindSafe for OverlayCellProvider<'a, A, B> where
    A: RefUnwindSafe,
    B: 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> From<T> for T[src]

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

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>,