pub struct GatewayNext<'a> { /* private fields */ }Expand description
The remaining immutable gateway chain.
Implementations§
Source§impl<'a> GatewayNext<'a>
impl<'a> GatewayNext<'a>
Sourcepub fn run(
self,
request: DelegationRequest,
) -> GatewayFuture<'a, Result<AgentOutcome, GatewayError>>
pub fn run( self, request: DelegationRequest, ) -> GatewayFuture<'a, Result<AgentOutcome, GatewayError>>
Runs the remaining middleware and eventually the protected terminal delegation boundary.
Trait Implementations§
Source§impl<'a> Clone for GatewayNext<'a>
impl<'a> Clone for GatewayNext<'a>
Source§fn clone(&self) -> GatewayNext<'a>
fn clone(&self) -> GatewayNext<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for GatewayNext<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for GatewayNext<'a>
impl<'a> !UnwindSafe for GatewayNext<'a>
impl<'a> Freeze for GatewayNext<'a>
impl<'a> Send for GatewayNext<'a>
impl<'a> Sync for GatewayNext<'a>
impl<'a> Unpin for GatewayNext<'a>
impl<'a> UnsafeUnpin for GatewayNext<'a>
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