Enum sentry_types::protocol::v7::DebugImage[][src]

pub enum DebugImage {
    Apple(AppleDebugImage),
    Symbolic(SymbolicDebugImage),
    Proguard(ProguardDebugImage),
}

Represents a debug image.

Variants

Apple debug images (machos). This is currently also used for non apple platforms with similar debug setups.

Symbolic (new style) debug infos.

A reference to a proguard debug file.

Methods

impl DebugImage
[src]

Returns the name of the type on sentry.

Trait Implementations

impl Debug for DebugImage
[src]

Formats the value using the given formatter. Read more

impl Clone for DebugImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DebugImage
[src]

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

This method tests for !=.

impl From<AppleDebugImage> for DebugImage
[src]

Performs the conversion.

impl From<SymbolicDebugImage> for DebugImage
[src]

Performs the conversion.

impl From<ProguardDebugImage> for DebugImage
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DebugImage

impl Sync for DebugImage