HavokTree

Trait HavokTree 

Source
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§

Source

fn tree_for_bytes(&mut self) -> String

Tree of the order in which to serialize as binary data.

Source

fn tree_for_xml(&mut self) -> String

Tree of the order in which to serialize as XML.

Implementations on Foreign Types§

Source§

impl<V> HavokTree for IndexMap<usize, V>
where V: HavokClass,

Source§

fn tree_for_bytes(&mut self) -> String

Source§

fn tree_for_xml(&mut self) -> String

Implementors§