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

pub struct ClientSdkInfo {
    pub name: String,
    pub version: String,
    pub integrations: Vec<String>,
    pub packages: Vec<ClientSdkPackage>,
}

Represents a repository reference.

Fields

The name of the SDK.

The version of the SDK.

An optional list of integrations that are enabled in this SDK.

An optional list of packages that are installed in the SDK's environment.

Trait Implementations

impl Debug for ClientSdkInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for ClientSdkInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ClientSdkInfo
[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