Module libafl::bolts::ownedref[][src]

Wrappers that abstracts references (or pointers) and owned data accesses.

Enums

OwnedArrayPtr

Wrap a C-style pointer to an array (with size) and convert to a Vec on serialize

OwnedArrayPtrMut

Wrap a C-style mutable pointer to an array (with size) and convert to a Vec on serialize

OwnedPtr

Wrap a C-style pointer and convert to a Box on serialize

OwnedPtrMut

Wrap a C-style mutable pointer and convert to a Box on serialize

OwnedRef

Wrap a reference and convert to a Box on serialize

OwnedRefMut

Wrap a mutable reference and convert to a Box on serialize

OwnedSlice

Wrap a slice and convert to a Vec on serialize

OwnedSliceMut

Wrap a mutable slice and convert to a Vec on serialize

Traits

IntoOwned

Trait to convert into an Owned type