Struct SyncPrefilledInboundUntil
pub struct SyncPrefilledInboundUntil {
pub hosted_lyquids: Vec<LyquidID>,
pub until_exclusive: ChainPos,
}Fields§
§hosted_lyquids: Vec<LyquidID>§until_exclusive: ChainPosTrait Implementations§
§impl Debug for SyncPrefilledInboundUntil
impl Debug for SyncPrefilledInboundUntil
§impl Handler<SyncPrefilledInboundUntil> for SideEffectPrefillActor
impl Handler<SyncPrefilledInboundUntil> for SideEffectPrefillActor
§type Result = MessageResult<SyncPrefilledInboundUntil>
type Result = MessageResult<SyncPrefilledInboundUntil>
The type of value that this handler will return. Read more
§fn handle(
&mut self,
msg: SyncPrefilledInboundUntil,
ctx: &mut Context<Self>,
) -> Self::Result
fn handle( &mut self, msg: SyncPrefilledInboundUntil, ctx: &mut Context<Self>, ) -> Self::Result
This method is called for every message received by this actor.
§impl Message for SyncPrefilledInboundUntil
impl Message for SyncPrefilledInboundUntil
§type Result = PrefilledInboundSync
type Result = PrefilledInboundSync
The type of value that this message will resolved with if it is
successful.
Auto Trait Implementations§
impl Freeze for SyncPrefilledInboundUntil
impl RefUnwindSafe for SyncPrefilledInboundUntil
impl Send for SyncPrefilledInboundUntil
impl Sync for SyncPrefilledInboundUntil
impl Unpin for SyncPrefilledInboundUntil
impl UnwindSafe for SyncPrefilledInboundUntil
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more