[][src]Enum lucet_runtime_internals::alloc::AddrLocation

pub enum AddrLocation {
    Heap,
    InaccessibleHeap,
    StackGuard,
    Stack,
    Globals,
    SigStackGuard,
    SigStack,
    Unknown,
}

Variants

Heap
InaccessibleHeap
StackGuard
Stack
Globals
SigStackGuard
SigStack
Unknown

Methods

impl AddrLocation[src]

pub fn is_fault_fatal(self) -> bool[src]

If a fault occurs in this location, is it fatal to the entire process?

This is currently a permissive baseline that only returns true for unknown locations and the signal stack guard, in case a Region implementation uses faults to populate the accessible locations like the heap and the globals.

Trait Implementations

impl Clone for AddrLocation[src]

impl Copy for AddrLocation[src]

impl Debug for AddrLocation[src]

impl Eq for AddrLocation[src]

impl PartialEq<AddrLocation> for AddrLocation[src]

impl StructuralEq for AddrLocation[src]

impl StructuralPartialEq for AddrLocation[src]

Auto Trait Implementations

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.