[][src]Struct sentry_core::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

sdk_name: String

The internal name of the SDK

version_major: u32

the major version of the SDK as integer or 0

version_minor: u32

the minor version of the SDK as integer or 0

version_patchlevel: u32

the patch version of the SDK as integer or 0

Trait Implementations

impl Clone for SystemSdkInfo[src]

impl Debug for SystemSdkInfo[src]

impl<'de> Deserialize<'de> for SystemSdkInfo[src]

impl PartialEq<SystemSdkInfo> for SystemSdkInfo[src]

impl Serialize for SystemSdkInfo[src]

impl StructuralPartialEq for SystemSdkInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,