Struct actix_tools::sentry::sentry_client::protocol::DebugMeta[]

pub struct DebugMeta {
    pub sdk_info: Option<SystemSdkInfo>,
    pub images: Vec<DebugImage>,
}

Represents debug meta information.

Fields

Optional system SDK information.

A list of debug information files.

Methods

impl DebugMeta

Returns true if the debug meta is empty.

This is used by the serializer to entirely skip the section.

Trait Implementations

impl Serialize for DebugMeta

Serialize this value into the given Serde serializer. Read more

impl Clone for DebugMeta

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DebugMeta

Returns the "default value" for a type. Read more

impl Debug for DebugMeta

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for DebugMeta where
    DebugMeta: Default

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<DebugMeta> for DebugMeta

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

This method tests for !=.

Auto Trait Implementations

impl Send for DebugMeta

impl Sync for DebugMeta