Struct cw_iper_test::IperContract
source · pub struct IperContract<C, Q = Empty>where
C: CustomMsg,
Q: CustomQuery,{
pub base: Box<dyn Contract<C, Q>>,
pub ibc: Option<Box<dyn IbcContract<C, Q>>>,
}Expand description
Wrapper struct to store both default Contract trait and optional [IbcContract] trait
Fields§
§base: Box<dyn Contract<C, Q>>default Contract interface
ibc: Option<Box<dyn IbcContract<C, Q>>>Optional [IbcContract] interface. Used only on contracts that implements ibc entry_points
Implementations§
source§impl<C, Q> IperContract<C, Q>where
C: CustomMsg,
Q: CustomQuery,
impl<C, Q> IperContract<C, Q>where
C: CustomMsg,
Q: CustomQuery,
Auto Trait Implementations§
impl<C, Q> Freeze for IperContract<C, Q>
impl<C, Q = Empty> !RefUnwindSafe for IperContract<C, Q>
impl<C, Q = Empty> !Send for IperContract<C, Q>
impl<C, Q = Empty> !Sync for IperContract<C, Q>
impl<C, Q> Unpin for IperContract<C, Q>
impl<C, Q = Empty> !UnwindSafe for IperContract<C, Q>
Blanket Implementations§
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<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::Request