[][src]Enum isla_lib::memory::Region

pub enum Region<B> {
    Constrained(Range<Address>, Arc<dyn Send + Sync + Fn(&mut Solver<B>) -> Sym>),
    Symbolic(Range<Address>),
    SymbolicCode(Range<Address>),
    Concrete(Range<Address>, HashMap<Address, u8>),
}

Variants

Constrained(Range<Address>, Arc<dyn Send + Sync + Fn(&mut Solver<B>) -> Sym>)

A region with a symbolic value constrained by a symbolic variable generated by an arbitrary function. The region should return a bitvector variable representing the whole region, so in practice this should be used for small regions of memory.

Symbolic(Range<Address>)

A region of arbitrary symbolic locations

SymbolicCode(Range<Address>)

A read only region of arbitrary symbolic locations intended for code

Concrete(Range<Address>, HashMap<Address, u8>)

A region of concrete read-only memory

Trait Implementations

impl<B: Clone> Clone for Region<B>[src]

impl<B> Debug for Region<B>[src]

Auto Trait Implementations

impl<B> !RefUnwindSafe for Region<B>

impl<B> Send for Region<B>

impl<B> Sync for Region<B>

impl<B> Unpin for Region<B>

impl<B> !UnwindSafe for Region<B>

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.