Struct InboundPrefillBuffer
pub struct InboundPrefillBuffer { /* private fields */ }Implementations§
§impl InboundPrefillBuffer
impl InboundPrefillBuffer
pub fn new() -> Self
pub fn record_inbound_inter_call( &self, call: InboundInterCall, ) -> Result<(), Error>
Trait Implementations§
§impl Clone for InboundPrefillBuffer
impl Clone for InboundPrefillBuffer
§fn clone(&self) -> InboundPrefillBuffer
fn clone(&self) -> InboundPrefillBuffer
Returns a duplicate 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 more§impl Default for InboundPrefillBuffer
impl Default for InboundPrefillBuffer
§fn default() -> InboundPrefillBuffer
fn default() -> InboundPrefillBuffer
Returns the “default value” for a type. Read more
§impl SideEffectPrefillSource for InboundPrefillBuffer
impl SideEffectPrefillSource for InboundPrefillBuffer
fn update_interest<'life0, 'async_trait>(
&'life0 self,
interest: SideEffectInterest,
) -> Pin<Box<dyn Future<Output = Result<InterestAck, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn fetch_prefill_for_lyquid<'life0, 'async_trait>(
&'life0 self,
_lyquid: LyquidID,
_from_exclusive: Option<CallOrderKey>,
_until_exclusive: ChainPos,
_limit: usize,
) -> Pin<Box<dyn Future<Output = Result<PrefillFetchBatch, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn fetch_inbound_for_lyquid<'life0, 'async_trait>(
&'life0 self,
lyquid: LyquidID,
from_exclusive: Option<CallOrderKey>,
until_exclusive: ChainPos,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<PrefillInboundBatch, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
§fn record_observed_inbound_inter_call<'life0, 'async_trait>(
&'life0 self,
call: InboundInterCall,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn record_observed_inbound_inter_call<'life0, 'async_trait>(
&'life0 self,
call: InboundInterCall,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Record one local inbound inter-call observed during execution. Read more
fn resolve_call_output<'life0, 'async_trait>(
&'life0 self,
_key: InterCallOutputKey,
) -> Pin<Box<dyn Future<Output = Result<Option<CallEventOutput>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for InboundPrefillBuffer
impl RefUnwindSafe for InboundPrefillBuffer
impl Send for InboundPrefillBuffer
impl Sync for InboundPrefillBuffer
impl Unpin for InboundPrefillBuffer
impl UnwindSafe for InboundPrefillBuffer
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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