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

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 Clone for SystemSdkInfo

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SystemSdkInfo

Formats the value using the given formatter. Read more

impl Serialize for SystemSdkInfo

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for SystemSdkInfo

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<SystemSdkInfo> for SystemSdkInfo

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

This method tests for !=.

Auto Trait Implementations