Enum sentry::protocol::DebugImage [] [src]

pub enum DebugImage {
    Apple(AppleDebugImage),
    Symbolic(SymbolicDebugImage),
    Proguard(ProguardDebugImage),
    Unknown(LinkedHashMap<String, Value, RandomState>),
}

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.

A debug image that is unknown to this protocol specification.

Methods

impl DebugImage
[src]

[src]

Returns the name of the type on sentry.

Trait Implementations

impl PartialEq<DebugImage> for DebugImage
[src]

[src]

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

[src]

This method tests for !=.

impl From<AppleDebugImage> for DebugImage
[src]

[src]

Performs the conversion.

impl From<ProguardDebugImage> for DebugImage
[src]

[src]

Performs the conversion.

impl From<SymbolicDebugImage> for DebugImage
[src]

[src]

Performs the conversion.

impl<'de> Deserialize<'de> for DebugImage
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for DebugImage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for DebugImage
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for DebugImage
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DebugImage

impl Sync for DebugImage