Trait clacks::BoxedDeserialize [] [src]

pub trait BoxedDeserialize where
    Self: Sized
{ fn possible_constructors() -> Vec<ConstructorNumber>;
fn deserialize_boxed(
        id: ConstructorNumber,
        de: &mut Deserializer
    ) -> Result<Self>; }

Required Methods

Implementations on Foreign Types

impl BoxedDeserialize for bool
[src]

impl<T> BoxedDeserialize for Box<T> where
    T: BoxedDeserialize
[src]

Implementors