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

pub enum AttachmentType {
    Attachment,
    Minidump,
    AppleCrashReport,
    UnrealContext,
    UnrealLogs,
}

The different types an attachment can have.

Variants

Attachment

(default) A standard attachment without special meaning.

Minidump

A minidump file that creates an error event and is symbolicated. The file should start with the MDMP magic bytes.

AppleCrashReport

An Apple crash report file that creates an error event and is symbolicated.

UnrealContext

An XML file containing UE4 crash meta data. During event ingestion, event contexts and extra fields are extracted from this file.

UnrealLogs

A plain-text log file obtained from UE4 crashes. During event ingestion, the last logs are extracted into event breadcrumbs.

Implementations

impl AttachmentType[src]

pub fn as_str(self) -> &'static str[src]

Gets the string value Sentry expects for the attachment type.

Trait Implementations

impl Clone for AttachmentType[src]

impl Copy for AttachmentType[src]

impl Debug for AttachmentType[src]

impl Default for AttachmentType[src]

impl PartialEq<AttachmentType> for AttachmentType[src]

impl StructuralPartialEq for AttachmentType[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> 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.