Struct sentry_types::protocol::v7::SystemSdkInfo[][src]

pub struct SystemSdkInfo {
    pub sdk_name: String,
    pub version_major: u32,
    pub version_minor: u32,
    pub version_patchlevel: u32,
}

Holds information about the system SDK.

This is relevant for iOS and other platforms that have a system SDK. Not to be confused with the client SDK.

Fields

The internal name of the SDK

the major version of the SDK as integer or 0

the minor version of the SDK as integer or 0

the patch version of the SDK as integer or 0

Trait Implementations

impl Debug for SystemSdkInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for SystemSdkInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SystemSdkInfo
[src]

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

This method tests for !=.

Auto Trait Implementations