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;
fn as_any_boxed(self: Box<Self>) -> Box<dyn Any>; }
Expand description

A (de)serializable Any trait

Required methods

returns this as Any trait

returns this as mutable Any trait

returns this as boxed Any trait

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Implementors