fuel_core_compression::decompress

Struct DecompressCtx

source
pub struct DecompressCtx<D> {
    pub config: Config,
    pub timestamp: Tai64,
    pub db: D,
}

Fields§

§config: Config§timestamp: Tai64

Timestamp of the block being decompressed

§db: D

Trait Implementations§

source§

impl<D> ContextError for DecompressCtx<D>

source§

type Error = Error

The error type returned by the context.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for Address

source§

async fn decompress_with( key: RegistryKey, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for AssetId

source§

async fn decompress_with( key: RegistryKey, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D, Specification> DecompressibleBy<DecompressCtx<D>> for Coin<Specification>

source§

async fn decompress_with( c: <Coin<Specification> as Compressible>::Compressed, ctx: &DecompressCtx<D>, ) -> Result<Coin<Specification>>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for ContractId

source§

async fn decompress_with( key: RegistryKey, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D, Specification> DecompressibleBy<DecompressCtx<D>> for Message<Specification>

source§

async fn decompress_with( c: <Message<Specification> as Compressible>::Compressed, ctx: &DecompressCtx<D>, ) -> Result<Message<Specification>>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for Mint
where D: DecompressDb,

source§

async fn decompress_with( c: Self::Compressed, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for PredicateCode

source§

async fn decompress_with( key: RegistryKey, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for ScriptCode

source§

async fn decompress_with( key: RegistryKey, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.
source§

impl<D> DecompressibleBy<DecompressCtx<D>> for UtxoId
where D: HistoryLookup,

source§

async fn decompress_with( c: CompressedUtxoId, ctx: &DecompressCtx<D>, ) -> Result<Self>

Perform decompression, returning the original data. The context can be used to resolve references.

Auto Trait Implementations§

§

impl<D> Freeze for DecompressCtx<D>
where D: Freeze,

§

impl<D> RefUnwindSafe for DecompressCtx<D>
where D: RefUnwindSafe,

§

impl<D> Send for DecompressCtx<D>
where D: Send,

§

impl<D> Sync for DecompressCtx<D>
where D: Sync,

§

impl<D> Unpin for DecompressCtx<D>
where D: Unpin,

§

impl<D> UnwindSafe for DecompressCtx<D>
where D: UnwindSafe,

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> 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, Ctx, Decompressed> Decompress<Decompressed, Ctx> for T
where Ctx: ContextError, Decompressed: DecompressibleBy<Ctx, Compressed = T>,

source§

async fn decompress( self, ctx: &Ctx, ) -> Result<Decompressed, <Ctx as ContextError>::Error>

Perform decompression, returning the original data.
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> StorageAsMut for T

source§

fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

source§

fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

source§

impl<T> StorageAsRef for T

source§

fn storage<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

source§

fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

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.