Enum isla_axiomatic::page_table::L3Desc[][src]

pub enum L3Desc {
    Concrete(u64),
    Symbolic(u64Sym),
}

A level 3 page table descriptor.

Variants

Concrete(u64)
Symbolic(u64Sym)

Implementations

impl L3Desc[src]

pub fn new_invalid() -> Self[src]

pub fn initial_value(self) -> u64[src]

pub fn new_reserved() -> Self[src]

pub fn page<P: PageAttrs>(page: u64, attrs: P) -> Self[src]

pub fn symbolic_address<B: BV>(self, solver: &mut Solver<'_, B>) -> Sym[src]

pub fn or_invalid<B: BV>(self, solver: &mut Solver<'_, B>) -> Self[src]

Make a level 3 descriptor potentially be invalid

pub fn new_symbolic<B: BV, P: PageAttrs>(
    pages: &[u64],
    attrs: P,
    solver: &mut Solver<'_, B>
) -> Self
[src]

Trait Implementations

impl Clone for L3Desc[src]

impl Copy for L3Desc[src]

impl Debug for L3Desc[src]

impl<B: BV> Into<Val<B>> for L3Desc[src]

Auto Trait Implementations

impl RefUnwindSafe for L3Desc

impl Send for L3Desc

impl Sync for L3Desc

impl Unpin for L3Desc

impl UnwindSafe for L3Desc

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.