Struct root_io::tree_reader::Tree[][src]

pub struct Tree { /* fields omitted */ }

A Tree is the default "container" for datasets in Root files The data is oranized in so-called branches. This type is exposed only for the purpose of creating ColumnFixedIntoIter and ColumnVarIntoIter objects from it.

Implementations

impl<'s> Tree[src]

pub fn branch_names_and_types(&self) -> Vec<(String, Vec<String>)>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

Get all the branch names and types (including nested ones) of this tree The first element is the name, the second one is the type

pub fn branch_by_name(&self, name: &str) -> Result<&TBranch, Error>[src]

Trait Implementations

impl Debug for Tree[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.