pub struct SoapService { /* private fields */ }Expand description
A fully configured SOAP service that can be converted into an axum Router.
Implementations§
Source§impl SoapService
impl SoapService
Sourcepub fn into_router(self) -> Router
pub fn into_router(self) -> Router
Convert this service into an axum Router with POST (SOAP) and GET (?wsdl) routes. The returned Router is composable with Router::merge().
In multi-service mode: registers one POST route per service path (from service_tables). In single-service mode: registers a single POST + GET route at mount_path (backward-compat).
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for SoapService
impl !UnwindSafe for SoapService
impl Freeze for SoapService
impl Send for SoapService
impl Sync for SoapService
impl Unpin for SoapService
impl UnsafeUnpin for SoapService
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