pub trait WsdlLoader: Send + Sync {
// Required method
fn load(&self, location: &str) -> Result<Vec<u8>, WsdlError>;
}Expand description
Abstracts file/network I/O for loading WSDL files during recursive import resolution.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".