Trait oxyroot::UnmarshalerInto

source ·
pub trait UnmarshalerInto {
    type Item: Default + Unmarshaler;

    // Required methods
    fn unmarshal_into(r: &mut RBuffer<'_>) -> Result<Self::Item, Error>;
    fn classe_name() -> Option<Vec<String>>;
}
Expand description

Automatically implemented if Unmarshaler is implemented

Required Associated Types§

Required Methods§

source

fn unmarshal_into(r: &mut RBuffer<'_>) -> Result<Self::Item, Error>

source

fn classe_name() -> Option<Vec<String>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> UnmarshalerInto for T
where T: Default + Unmarshaler,

§

type Item = T