Enum minidump::MinidumpLinuxMapKind[][src]

pub enum MinidumpLinuxMapKind<'a> {
    MainThreadStack,
    Stack(u64),
    Heap,
    Vdso,
    AnonymousMap,
    UnknownSpecial(Cow<'a, LinuxOsStr>),
    File(Cow<'a, LinuxOsStr>),
    DeletedFile(Cow<'a, LinuxOsStr>),
}
Expand description

A broad classification of the mapped memory described by a MinidumpLinuxMapInfo.

Variants

MainThreadStack

This is the main thread’s stack.

Stack(u64)

This is the stack of a non-main thread with the given tid.

Tuple Fields of Stack

0: u64
Heap

This is the process’s heap.

Vdso

This is the “Virtual Dynamically-linked Shared Object”.

AnonymousMap

This is an anonymous mmap.

UnknownSpecial(Cow<'a, LinuxOsStr>)

Some other special kind that we don’t know/care about.

Tuple Fields of UnknownSpecial

0: Cow<'a, LinuxOsStr>
File(Cow<'a, LinuxOsStr>)

This is a mapped file/device at the given path.

Tuple Fields of File

0: Cow<'a, LinuxOsStr>
DeletedFile(Cow<'a, LinuxOsStr>)

This is a mapped file/device at the given path, and that file was deleted.

Tuple Fields of DeletedFile

0: Cow<'a, LinuxOsStr>

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

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.