pub trait Unmarshaler {
    fn unmarshal(&mut self, r: &mut RBuffer<'_>) -> Result<()>;
}
Expand description

Trait that permits reading a type from an ROOT file.

Examples of types that implement this:

  • Primitive integers, floats, etc
  • Owned byte containers (Vec<T>, HashMap<K,V>, HashSet )

Required Methods

Implementations on Foreign Types

Implementors