pub struct EventServiceHandler { /* private fields */ }Implementations§
Trait Implementations§
Source§impl SoapHandler for EventServiceHandler
impl SoapHandler for EventServiceHandler
Source§fn handle_with_headers<'life0, 'life1, 'async_trait>(
&'life0 self,
body: Bytes,
headers: &'life1 [Bytes],
) -> Pin<Box<dyn Future<Output = Result<Bytes, SoapFault>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle_with_headers<'life0, 'life1, 'async_trait>(
&'life0 self,
body: Bytes,
headers: &'life1 [Bytes],
) -> Pin<Box<dyn Future<Output = Result<Bytes, SoapFault>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Override to receive SOAP header fragments so WS-Addressing reference parameters (echoed SubscriptionId) can be used for routing.
fn handle<'life0, 'async_trait>(
&'life0 self,
body: Bytes,
) -> Pin<Box<dyn Future<Output = Result<Bytes, SoapFault>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for EventServiceHandler
impl !UnwindSafe for EventServiceHandler
impl Freeze for EventServiceHandler
impl Send for EventServiceHandler
impl Sync for EventServiceHandler
impl Unpin for EventServiceHandler
impl UnsafeUnpin for EventServiceHandler
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