[][src]Struct byte_mutator::mutators::Mutation

pub struct Mutation {
    pub range: Option<(usize, usize)>,
    pub mutation: MutationType,
}

A single mutation, optionally scoped to only operate on a subslice

Fields

range: Option<(usize, usize)>

Optional subslice range (e.g. Some(0, 3) only mutates the first three bytes)

mutation: MutationType

Type of mutator (e.g. MutatorType::BitFlipper)

Methods

impl Mutation[src]

pub const fn new(
    mutator_type: MutationType,
    range: Option<(usize, usize)>
) -> Self
[src]

Create a new Mutation, optionally scoped to operate only on a subslice

pub fn mutate(&self, bytes: &mut [u8], i: usize)[src]

Execute the mutation

Trait Implementations

impl Clone for Mutation[src]

impl Debug for Mutation[src]

impl<'de> Deserialize<'de> for Mutation[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]