pub struct Unpredictable;
Expand description

represents an unpredictable curve

unpredictable curves seek to:

  • disrupt ‘just so’ implementations of algorithms that lean too heavily on fragile assumptions
  • have a high probability of generating common edge cases that developers fail to cover a classic example is broken/forgotten NaN handling in code that uses floats for calculations

in general this is what we want from our tests, to remind us of where we are wrong about our assumptions in our code. it is likely that you want to use the Unpredictable curve as the defacto choice for testing.

however, note that unpredictable curves are NOT intended:

  • to comprehensively cover any particular value space
  • to replace property/fuzz testing
  • to algorithmically explore edge-cases in an automated fashion
  • to assert any particular security or correctness concern

unpredictable curves are a great way to knock off some low hanging fruit, especially around numeric calculations and utf-8 handling, but are no replacement for stringent approaches.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.