Enum root_io::core::types::ClassInfo[][src]

pub enum ClassInfo<'s> {
    New(&'s str),
    Exists(u32),
    References(u32),
}

Used in TStreamerInfo Describes if the following entry is a new class or if it was already described.

Variants

New(&'s str)

Class name of the new class

Exists(u32)

Byte offset of new class tag in record, + 2; whatever... followed by object

References(u32)

Byte offset of new class tag in record, + 2; whatever... ref to object

Trait Implementations

impl<'s> Debug for ClassInfo<'s>[src]

Auto Trait Implementations

impl<'s> RefUnwindSafe for ClassInfo<'s>[src]

impl<'s> Send for ClassInfo<'s>[src]

impl<'s> Sync for ClassInfo<'s>[src]

impl<'s> Unpin for ClassInfo<'s>[src]

impl<'s> UnwindSafe for ClassInfo<'s>[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,