Trait libafl::inputs::HasTargetBytes

source ·
pub trait HasTargetBytes {
    // Required method
    fn target_bytes(&self) -> OwnedSlice<'_, u8>;
}
Expand description

Can be represented with a vector of bytes. This representation is not necessarily deserializable. Instead, it can be used as bytes input for a target

Required Methods§

source

fn target_bytes(&self) -> OwnedSlice<'_, u8>

Target bytes, that can be written to a target

Implementors§