pub trait BuilderExt {
// Required methods
fn types_attributes(self, paths: &[&str], attributes: &[&str]) -> Self;
fn fields_attributes(
self,
path: &[&str],
fields: &[&str],
attributes: &[&str],
) -> Self;
}
Required Methods§
fn types_attributes(self, paths: &[&str], attributes: &[&str]) -> Self
fn fields_attributes( self, path: &[&str], fields: &[&str], attributes: &[&str], ) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.