Enum haybale::ParameterVal[][src]

pub enum ParameterVal {
    Unconstrained,
    ExactValue(u64),
    Range(u64u64),
    NonNullPointer,
    PointerToAllocated(u64),
}

Variants

Unconstrained

The parameter can have any value whatsoever. (The analysis will effectively consider all possible values.)

ExactValue(u64)

The parameter will have this exact value.

Tuple Fields of ExactValue

0: u64
Range(u64u64)

The parameter can have any value in this range (inclusive).

Tuple Fields of Range

0: u641: u64
NonNullPointer

The parameter will have a non-null value, but otherwise be completely unconstrained (could point anywhere or alias anything). This can only be used for pointer-type parameters.

PointerToAllocated(u64)

The parameter will point to allocated memory, with the given allocation size in bytes. It will not be NULL and will not alias any other allocated memory. This can only be used for pointer-type parameters.

Tuple Fields of PointerToAllocated

0: u64

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.