Skip to content

Commit

Permalink
feat: Made some fields public that were not
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Mar 23, 2018
1 parent a223bed commit de1ebb0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/protocol/v7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@ pub struct Request {
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SystemSdkInfo {
/// The internal name of the SDK
sdk_name: String,
pub sdk_name: String,
/// the major version of the SDK as integer or 0
version_major: u32,
pub version_major: u32,
/// the minor version of the SDK as integer or 0
version_minior: u32,
pub version_minior: u32,
/// the patch version of the SDK as integer or 0
version_patchlevel: u32,
pub version_patchlevel: u32,
}

/// Represents a debug image.
Expand Down Expand Up @@ -410,10 +410,10 @@ pub struct ProguardDebugImage {
pub struct DebugMeta {
/// Optional system SDK information.
#[serde(skip_serializing_if = "Option::is_none")]
sdk_info: Option<SystemSdkInfo>,
pub sdk_info: Option<SystemSdkInfo>,
/// A list of debug information files.
#[serde(skip_serializing_if = "Option::is_none")]
images: Option<DebugImage>,
pub images: Option<DebugImage>,
}

/// Represents a repository reference.
Expand Down

0 comments on commit de1ebb0

Please sign in to comment.