[]Enum sentry::protocol::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

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

Gets the string value Sentry expects for the attachment type.

Trait Implementations

impl Clone for AttachmentType

impl Copy for AttachmentType

impl Debug for AttachmentType

impl Default for AttachmentType

impl PartialEq<AttachmentType> for AttachmentType

impl StructuralPartialEq for AttachmentType

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> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]