Struct sapio_base::txindex::CachedTxIndex[][src]

pub struct CachedTxIndex<Cache: TxIndex, Primary: TxIndex> {
    pub cache: Cache,
    pub primary: Primary,
}

Fields

cache: Cacheprimary: Primary

Trait Implementations

impl<Cache, Primary> TxIndex for CachedTxIndex<Cache, Primary> where
    Cache: TxIndex,
    Primary: TxIndex
[src]

Auto Trait Implementations

impl<Cache, Primary> RefUnwindSafe for CachedTxIndex<Cache, Primary> where
    Cache: RefUnwindSafe,
    Primary: RefUnwindSafe

impl<Cache, Primary> Send for CachedTxIndex<Cache, Primary> where
    Cache: Send,
    Primary: Send

impl<Cache, Primary> Sync for CachedTxIndex<Cache, Primary> where
    Cache: Sync,
    Primary: Sync

impl<Cache, Primary> Unpin for CachedTxIndex<Cache, Primary> where
    Cache: Unpin,
    Primary: Unpin

impl<Cache, Primary> UnwindSafe for CachedTxIndex<Cache, Primary> where
    Cache: UnwindSafe,
    Primary: UnwindSafe

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.