• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rj76 / fcm-rust / 7614069314

22 Jan 2024 04:12PM UTC coverage: 5.2%. Remained the same
7614069314

Pull #4

github

web-flow
Merge 59c8a7a94 into a8babd228
Pull Request #4: feat: build new api

561 of 35893 branches covered (0.0%)

Branch coverage included in aggregate %.

116 of 239 new or added lines in 22 files covered. (48.54%)

1163 existing lines in 58 files now uncovered.

15495 of 272851 relevant lines covered (5.68%)

170.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/android/android_fcm_options.rs
1
use serde::Serialize;
2

NEW
3
#[derive(Serialize, Debug)]
×
4
//https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages?authuser=0#androidconfig
5
pub(crate) struct AndroidFcmOptionsInternal {
6
    // Label associated with the message's analytics data.
7
    analytics_label: String,
8
}
9

10
#[derive(Debug, Default)]
11
pub struct AndroidFcmOptions {
12
    pub analytics_label: String,
13
}
14

15
impl AndroidFcmOptions {
16
    pub(crate) fn finalize(self) -> AndroidFcmOptionsInternal {
17
        AndroidFcmOptionsInternal {
18
            analytics_label: self.analytics_label,
19
        }
20
    }
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc