pub trait HavokTree {
// Required methods
fn tree_for_bytes(&mut self) -> String;
fn tree_for_xml(&mut self) -> String;
}Expand description
Trait to create ptr dependencies tree
Required Methods§
Sourcefn tree_for_bytes(&mut self) -> String
fn tree_for_bytes(&mut self) -> String
Tree of the order in which to serialize as binary data.
Sourcefn tree_for_xml(&mut self) -> String
fn tree_for_xml(&mut self) -> String
Tree of the order in which to serialize as XML.