firebase-admin 0.3.0

An open-source Firebase Admin SDK for Rust: Authentication and Cloud Messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Firebase Cloud Messaging: sending messages and managing topic
//! subscriptions.

pub mod client;
pub mod error;
mod fcm_v1;
pub mod message;
#[cfg(feature = "live-messaging")]
mod token_provider;

pub use client::{MessagingClient, MessagingClientBuilder, MAX_BATCH_SIZE};
pub use error::MessagingError;
pub use message::{
    AndroidConfig, ApnsConfig, BatchResponse, Message, Notification, SendError, SendResult, Target,
    TopicManagementError, TopicManagementResponse, WebpushConfig, WebpushNotification,
};