wsdl 0.1.3

Idiomatic Rust wrapper for WSDL
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![feature(try_find)]
mod wsdl;

pub use self::wsdl::{
    WsBinding, WsDefinitions, WsError, WsMessage, WsMessagePart, WsPortOperation, WsPortType,
    WsService, WsServicePort, WsTypes,
};

/// Re-export the roxmltree crate.
pub use roxmltree;