pub trait XsdContractAdapter {
// Required methods
fn contract_name(&self) -> &str;
fn into_contract(self) -> XmlResult<XmlContract>;
}Required Methods§
fn contract_name(&self) -> &str
fn into_contract(self) -> XmlResult<XmlContract>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".