pub trait VmfSerializable {
// Required method
fn to_vmf_string(&self, indent_level: usize) -> String;
}Expand description
A trait for types that can be serialized into a VMF string representation.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".