Enum AttachmentType
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§
§impl AttachmentType
impl AttachmentType
Trait Implementations§
§impl Clone for AttachmentType
impl Clone for AttachmentType
§fn clone(&self) -> AttachmentType
fn clone(&self) -> AttachmentType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AttachmentType
impl Debug for AttachmentType
§impl Default for AttachmentType
impl Default for AttachmentType
§fn default() -> AttachmentType
fn default() -> AttachmentType
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for AttachmentType
impl<'de> Deserialize<'de> for AttachmentType
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AttachmentType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AttachmentType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for AttachmentType
impl PartialEq for AttachmentType
impl Copy for AttachmentType
impl Eq for AttachmentType
impl StructuralPartialEq for AttachmentType
Auto Trait Implementations§
impl Freeze for AttachmentType
impl RefUnwindSafe for AttachmentType
impl Send for AttachmentType
impl Sync for AttachmentType
impl Unpin for AttachmentType
impl UnwindSafe for AttachmentType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.