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

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

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.

Trait Implementations

impl Serialize for ClientSdkInfo

Serialize this value into the given Serde serializer. Read more

impl Clone for ClientSdkInfo

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ClientSdkInfo

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for ClientSdkInfo

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<ClientSdkInfo> for ClientSdkInfo

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

This method tests for !=.

Auto Trait Implementations