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§
type Item: Default + Unmarshaler
Required Methods§
fn unmarshal_into(r: &mut RBuffer<'_>) -> Result<Self::Item, Error>
fn classe_name() -> Option<Vec<String>>
Object Safety§
This trait is not object safe.