pub struct CachingCustomHandler<ExecC, QueryC> { /* private fields */ }Expand description
Custom handler storing all the messages it received, so they can be later verified. State is thin shared state, so it can be hold after mock is passed to App to read state.
Implementations§
source§impl<ExecC, QueryC> CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> CachingCustomHandler<ExecC, QueryC>
source§impl<ExecC, QueryC> CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> CachingCustomHandler<ExecC, QueryC>
pub fn state(&self) -> CachingCustomHandlerState<ExecC, QueryC>
Trait Implementations§
source§impl<ExecC: Clone, QueryC: Clone> Clone for CachingCustomHandler<ExecC, QueryC>
impl<ExecC: Clone, QueryC: Clone> Clone for CachingCustomHandler<ExecC, QueryC>
source§fn clone(&self) -> CachingCustomHandler<ExecC, QueryC>
fn clone(&self) -> CachingCustomHandler<ExecC, QueryC>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<ExecC, QueryC> Default for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> Default for CachingCustomHandler<ExecC, QueryC>
source§impl<Exec, Query> Module for CachingCustomHandler<Exec, Query>
impl<Exec, Query> Module for CachingCustomHandler<Exec, Query>
type ExecT = Exec
type QueryT = Query
type SudoT = Empty
source§fn execute<ExecC, QueryC>(
&self,
_api: &dyn Api,
_storage: &mut dyn Storage,
_router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>,
_block: &BlockInfo,
_sender: Addr,
msg: Self::ExecT
) -> AnyResult<AppResponse>
fn execute<ExecC, QueryC>( &self, _api: &dyn Api, _storage: &mut dyn Storage, _router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>, _block: &BlockInfo, _sender: Addr, msg: Self::ExecT ) -> AnyResult<AppResponse>
Runs any ExecT message,
which can be called by any external actor or smart contract.
source§fn sudo<ExecC, QueryC>(
&self,
_api: &dyn Api,
_storage: &mut dyn Storage,
_router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>,
_block: &BlockInfo,
msg: Self::SudoT
) -> AnyResult<AppResponse>
fn sudo<ExecC, QueryC>( &self, _api: &dyn Api, _storage: &mut dyn Storage, _router: &dyn CosmosRouter<ExecC = ExecC, QueryC = QueryC>, _block: &BlockInfo, msg: Self::SudoT ) -> AnyResult<AppResponse>
Runs privileged actions, like minting tokens, or governance proposals.
This allows modules to have full access to these privileged actions,
that cannot be triggered by smart contracts. Read more
Auto Trait Implementations§
impl<ExecC, QueryC> Freeze for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> !RefUnwindSafe for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> !Send for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> !Sync for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> Unpin for CachingCustomHandler<ExecC, QueryC>
impl<ExecC, QueryC> !UnwindSafe for CachingCustomHandler<ExecC, QueryC>
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Requestsource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.