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.
pub trait VmfSerializable {
// Required method
fn to_vmf_string(&self, indent_level: usize) -> String;
}A trait for types that can be serialized into a VMF string representation.