ckb_store::data_loader_wrapper

Struct BorrowedDataLoaderWrapper

Source
pub struct BorrowedDataLoaderWrapper<'a, T>(/* private fields */);
Expand description

Borrowed DataLoaderWrapper with lifetime

Implementations§

Source§

impl<'a, T: ChainStore> BorrowedDataLoaderWrapper<'a, T>

Source

pub fn new(source: &'a T) -> Self

Construct new BorrowedDataLoaderWrapper

Trait Implementations§

Source§

impl<'a, T: ChainStore> CellDataProvider for BorrowedDataLoaderWrapper<'a, T>

Source§

fn get_cell_data(&self, out_point: &OutPoint) -> Option<Bytes>

Fetch cell_data from storage
Source§

fn get_cell_data_hash(&self, out_point: &OutPoint) -> Option<Byte32>

Fetch cell_data_hash from storage, please note that loading a large amount of cell data and calculating hash may be a performance bottleneck, so here is a separate fn designed to facilitate caching. Read more
Source§

fn load_cell_data(&self, cell: &CellMeta) -> Option<Bytes>

Load cell_data from memory, fallback to storage access
Source§

fn load_cell_data_hash(&self, cell: &CellMeta) -> Option<Byte32>

Load cell_data_hash from memory, fallback to storage access
Source§

impl<'a, T: ChainStore> EpochProvider for BorrowedDataLoaderWrapper<'a, T>

Source§

fn get_epoch_ext(&self, header: &HeaderView) -> Option<EpochExt>

Get corresponding EpochExt by block header
Source§

fn get_block_hash(&self, number: BlockNumber) -> Option<Byte32>

Get block header hash by block number
Source§

fn get_block_ext(&self, block_hash: &Byte32) -> Option<BlockExt>

Get block ext by block header hash
Source§

fn get_block_header(&self, hash: &Byte32) -> Option<HeaderView>

Get header by block header hash
Source§

fn get_block_epoch(&self, header: &HeaderView) -> Option<BlockEpoch>

Get corresponding epoch progress information by block header
Source§

impl<'a, T: ChainStore> ExtensionProvider for BorrowedDataLoaderWrapper<'a, T>

Source§

fn get_block_extension(&self, hash: &Byte32) -> Option<Bytes>

Get the extension field of the given block hash
Source§

impl<'a, T: ChainStore> HeaderProvider for BorrowedDataLoaderWrapper<'a, T>

Source§

fn get_header(&self, block_hash: &Byte32) -> Option<HeaderView>

Get the header of the given block hash

Auto Trait Implementations§

§

impl<'a, T> Freeze for BorrowedDataLoaderWrapper<'a, T>

§

impl<'a, T> RefUnwindSafe for BorrowedDataLoaderWrapper<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for BorrowedDataLoaderWrapper<'a, T>
where T: Sync,

§

impl<'a, T> Sync for BorrowedDataLoaderWrapper<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for BorrowedDataLoaderWrapper<'a, T>

§

impl<'a, T> UnwindSafe for BorrowedDataLoaderWrapper<'a, T>
where T: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsAny for T
where T: Any,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Cast to trait Any
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T