Enum actix_tools::sentry::sentry_client::protocol::DebugImage[]

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

Returns the name of the type on sentry.

Trait Implementations

impl Serialize for DebugImage

Serialize this value into the given Serde serializer. Read more

impl Clone for DebugImage

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DebugImage

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for DebugImage

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<DebugImage> for DebugImage

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

This method tests for !=.

impl From<SymbolicDebugImage> for DebugImage

Performs the conversion.

impl From<AppleDebugImage> for DebugImage

Performs the conversion.

impl From<ProguardDebugImage> for DebugImage

Performs the conversion.

Auto Trait Implementations

impl Send for DebugImage

impl Sync for DebugImage