Enum sentry_types::protocol::v7::AttachmentType
source · [−]pub enum AttachmentType {
Attachment,
Minidump,
AppleCrashReport,
UnrealContext,
UnrealLogs,
}
Expand description
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
sourceimpl AttachmentType
impl AttachmentType
Trait Implementations
sourceimpl Clone for AttachmentType
impl Clone for AttachmentType
sourcefn clone(&self) -> AttachmentType
fn clone(&self) -> AttachmentType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AttachmentType
impl Debug for AttachmentType
sourceimpl Default for AttachmentType
impl Default for AttachmentType
sourceimpl PartialEq<AttachmentType> for AttachmentType
impl PartialEq<AttachmentType> for AttachmentType
impl Copy for AttachmentType
impl StructuralPartialEq for AttachmentType
Auto Trait Implementations
impl RefUnwindSafe for AttachmentType
impl Send for AttachmentType
impl Sync for AttachmentType
impl Unpin for AttachmentType
impl UnwindSafe for AttachmentType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more