Trait libafl::bolts::serdeany::SerdeAny[][src]

pub trait SerdeAny: Any + Serialize {
    fn as_any(&self) -> &dyn Any;
fn as_any_mut(&mut self) -> &mut dyn Any; }
Expand description

A (de)serializable Any trait

Required methods

returns this as Any trait

returns this as mutable Any trait

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Implementors