pub enum Branch {
    Base(TBranch),
    Element(TBranchElement),
}
Expand description

Rust equivalent of TBranch or TBranchElement (ie column) of a TTree

Choice between TBranch or TBranchElement is done when Root file is read. Branch should not be constructed by user but accessed via crate::Tree::branch

Variants

Base(TBranch)

Element(TBranchElement)

Implementations

search in children branches

Create an iterator over the data of a column (TBranch)

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.